Merge branch 'dev-nx' of http://192.168.0.56:3000/bonus/devicesmgt into dev-nx

This commit is contained in:
sxu 2024-07-30 12:47:22 +08:00
commit 9d00e3fa17
2 changed files with 9 additions and 0 deletions

View File

@ -56,6 +56,13 @@
<artifactId>lombok</artifactId>
</dependency>
<!--加密依赖包-->
<dependency>
<groupId>com.github.ulisesbocchio</groupId>
<artifactId>jasypt-spring-boot-starter</artifactId>
<version>3.0.2</version>
</dependency>
</dependencies>

View File

@ -1,5 +1,6 @@
package com.bonus.sgzb.auth;
import com.ulisesbocchio.jasyptspringboot.annotation.EnableEncryptableProperties;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@ -14,6 +15,7 @@ import org.springframework.context.annotation.ComponentScan;
*/
@EnableRyFeignClients
@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class})
@EnableEncryptableProperties
public class SgzbAuthApplication {
public static void main(String[] args) {
SpringApplication.run(SgzbAuthApplication.class, args);