Blog
文章平均质量分 58
618GLOAL_COOK2237
未来由你选择!
展开
-
博客3 Aop使用、缓存优化 别的优化、总结
1、AOP使用(1)定义一个注解://Type 代表可以放在类上面 Method 代表可以放在方法上@Target({ElementType.METHOD})@Retention(RetentionPolicy.RUNTIME)@Documentedpublic @interface LogAnnotation { String module() default ""; String operator() default "";}然后再Controller加注解就行然后原创 2021-08-24 21:52:12 · 480 阅读 · 0 评论 -
博客重点内容2 登录拦截器 ThreadLocal使用、线程池生产使用
1.登录拦截器重点在注释@Component@Slf4jpublic class LoginInterceptor implements HandlerInterceptor{ @Autowired private LoginService loginService; @Override public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object原创 2021-08-23 17:42:18 · 405 阅读 · 0 评论 -
swagger入门
pom导入:<!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 --> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <原创 2021-08-23 13:38:46 · 191 阅读 · 0 评论 -
博客系统重点内容1、实体与db字段不一致解决、统一异常处理、枚举使用、do、JWT、登录过程、ID自增问题
1.mybatis和mybat-plus实体和数据库名不一样:https://blog.csdn.net/William_TWG/article/details/1094029632.数据库为Bigint、Bit那么对应实体为Long、Integer3.原创 2021-08-21 22:46:25 · 274 阅读 · 0 评论