MIYA是一个追求简单易用的中后台软件开发包。你可以轻而易举得到一些实用的功能,基于springboot。
模块 | 介绍 |
---|---|
miya-common | 不包含实际的业务功能 |
miya-system | 系统级常用的功能模块,用户、角色、机构等 |
miya-examples | 使用例子 |
- 依赖配置
<dependency>
<groupId>io.github.rxxy</groupId>
<artifactId>miya-system</artifactId>
<version>${latest}</version>
</dependency>
如果你想尝鲜快照版本,请添加如下代码
<repositories>
<repository>
<id>central-snapshots</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
</repositories>
- 配置
spring.datasource.url=jdbc:mysql://localhost:3306/miya?allowMultiQueries=true&useSSL=false&allowPublicKeyRetrieval=true
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
#logging.level.org.hibernate.SQL=DEBUG
spring.jpa.properties.hibernate.show_sql=false
spring.jpa.properties.hibernate.hbm2ddl.auto=update
# 是否开启数据审计
spring.jpa.properties.hibernate.integration.envers.enabled=false
spring.jpa.properties.org.hibernate.envers.default_catalog=miya-deleted
# 开启特殊字符过滤(全局trim前端字符串参数的首尾空格,并去除如ZWSP这类不可见字符,@RequestBody接参不进行处理)
config.enable-special-character-filter=true
- 启动springboot
springboot spring-mvc spring-data-jpa hibernate-search jwt等