mid:增加mp的数据保护 启动报错
This commit is contained in:
parent
418d04b752
commit
365a5edf3d
8
pom.xml
8
pom.xml
|
|
@ -29,6 +29,7 @@
|
|||
<tobato.version>1.27.2</tobato.version>
|
||||
<kaptcha.version>2.3.2</kaptcha.version>
|
||||
<pagehelper.boot.version>1.4.1</pagehelper.boot.version>
|
||||
<cn.hutool.version>5.7.19</cn.hutool.version>
|
||||
<druid.version>1.2.8</druid.version>
|
||||
<dynamic-ds.version>3.5.0</dynamic-ds.version>
|
||||
<commons.io.version>2.11.0</commons.io.version>
|
||||
|
|
@ -127,6 +128,13 @@
|
|||
<version>${kaptcha.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Hutool -->
|
||||
<dependency>
|
||||
<groupId>cn.hutool</groupId>
|
||||
<artifactId>hutool-all</artifactId>
|
||||
<version>${cn.hutool.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- pagehelper 分页插件 -->
|
||||
<dependency>
|
||||
<groupId>com.github.pagehelper</groupId>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,4 @@
|
|||
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
|
||||
com.pinn.common.publicPackage.utils.AESMybatisPlusUtils
|
||||
|
||||
|
||||
|
|
@ -0,0 +1 @@
|
|||
aa78fcbe21d77af8
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
## 1、在MybatisPlusAES 输入对应信息 生成加密
|
||||
## 2、resources mybatisPlus下会追加EncryptKey
|
||||
## 3、如何启动是加上密钥
|
||||
|
||||
```java
|
||||
// Jar 启动参数( idea 设置 Program arguments(编辑启动面板alt+R可以添加) , 服务器可以设置为启动环境变量 )
|
||||
--mpw.key=d1104d7c3b616f0b
|
||||
```
|
||||
|
|
@ -16,6 +16,7 @@
|
|||
<module>ruoyi-common-security</module>
|
||||
<module>ruoyi-common-datascope</module>
|
||||
<module>ruoyi-common-datasource</module>
|
||||
<module>pinn-common-mybatisPlus</module>
|
||||
</modules>
|
||||
|
||||
<artifactId>ruoyi-common</artifactId>
|
||||
|
|
|
|||
Loading…
Reference in New Issue