spring boot
文章平均质量分 90
sutong_first
这个作者很懒,什么都没留下…
展开
-
Springboot项目中常用注解
用于启用基于注解的事务自动管理,可以在方法上添加@Transactional注解来声明事务。用于启用对servlet组件的扫描,servlet三大组件 Servlet、Filter、Listener 在传统项目中需要在 web.xml 中进行相应的配置,spring使用三个注解@WebServlet、@WebFilter、@WebListener 写在对应的 Servlet、Filter、Listener 类上作为标识,从而不需要在 web.xml 中进行配置了。用于启用AspectJ自动代理功能的注解。原创 2024-10-24 16:48:28 · 771 阅读 · 0 评论 -
jasypt整合springboot给数据库加密
导入包 <dependency> <groupId>com.github.ulisesbocchio</groupId> <artifactId>jasypt-spring-boot-starter</artifactId> <version>1.14</version> <...原创 2019-03-20 10:44:16 · 606 阅读 · 0 评论 -
springboot整合Redis
spring boot整合Redis 转载:http://www.cnblogs.com/zeng1994/ 1. 前置条件 1.1 导入jar <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-r...转载 2019-04-03 15:09:00 · 141 阅读 · 0 评论