!479 update 优化 使用预扫描实体类提升代码性能

* 优化了数据库字段加解密的缓存机制.在自动配置类启动时,就把有加密注解的类进行缓存,以提高速度.
This commit is contained in:
_老马_
2024-01-17 05:47:44 +00:00
committed by 疯狂的狮子Li
parent 13e60a6048
commit cad250f02a
5 changed files with 110 additions and 21 deletions

View File

@ -42,6 +42,17 @@
<artifactId>spring-webmvc</artifactId>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
<exclusions>
<exclusion>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>