摘要: 相较与古老的ssm项目,springboot项目的切面编程几乎不用配置。开箱即用。 依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> 阅读全文
posted @ 2020-01-29 20:10 itwetouch 阅读(479) 评论(0) 推荐(0) 编辑
摘要: 自定义注解 import java.lang.annotation.*; /** * @author wzm */ //注解会在class中存在,运行时可通过反射获取 @Retention(RetentionPolicy.RUNTIME) //目标是方法 @Target({ElementType.M 阅读全文
posted @ 2020-01-29 17:17 itwetouch 阅读(604) 评论(0) 推荐(0) 编辑
摘要: springboot项目下的一些统一操作。 idea需要实现安装lombok插件 依赖: 依赖少了的,漏了的自己引。 <!--切面--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot- 阅读全文
posted @ 2020-01-29 16:57 itwetouch 阅读(475) 评论(0) 推荐(0) 编辑