随笔分类 -  Springboot

spring项目slf4j使用
摘要:idea安装lombok pom新增包 <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <optional>true</optional> </dependency> optional 阅读全文

posted @ 2023-02-07 10:13 周公 阅读(73) 评论(0) 推荐(0) 编辑

springboot异常
摘要:启动失败,报版本异常 异常内容: java: 无法访问org.springframework.web.bind.annotation.RequestMapping 错误的类文件: /C:/Users/马硕/.m2/repository/org/springframework/spring-web/6 阅读全文

posted @ 2023-01-12 15:22 周公 阅读(1732) 评论(0) 推荐(0) 编辑

springboot日常记录
摘要:springboot统一异常处理 package com.jlpay.mng.agent.config.asserts; import com.jlpay.commons.exception.JlpayException; import com.jlpay.mng.agent.model.respo 阅读全文

posted @ 2022-07-03 19:07 周公 阅读(33) 评论(0) 推荐(0) 编辑

Springboot中WebMvcConfigurer接口详解
摘要:用途:跨域、拦截器、静态资源处理 接口方法的作用: addInterceptors:拦截器 addViewControllers:页面跳转 addResourceHandlers:静态资源 configureDefaultServletHandling:默认静态资源处理器 configureView 阅读全文

posted @ 2022-02-10 20:45 周公 阅读(4433) 评论(0) 推荐(0) 编辑

拦截器、过滤器
摘要:拦截器 概念:反射(动态代理)实现,对每个接口的请求进行拦截,比如校验接口请求的token是否有效。 springboot自定义拦截器,继承HandlerInterceptorAdapter @Component public class AuthorityInterceptor extends H 阅读全文

posted @ 2022-02-09 20:35 周公 阅读(62) 评论(0) 推荐(0) 编辑

(一) 使用 spring.profiles.active来区分配置
摘要:本文参考:https://blog.csdn.net/uniquewonderq/article/details/79963719 基本应用: spring boot允许你通过命名约定按照一定的格式(application-{profile}.properties)来定义多个配置文件,然后通过在ap 阅读全文

posted @ 2021-02-24 11:31 周公 阅读(685) 评论(0) 推荐(0) 编辑

Springboot报错处理
摘要:1. springboot @Autowired注入为null,出现空指针的问题 1.排除项目配置问题 2. 注入service 的类 不能以new的方式, 否则会失败 如:一个类中使用 public class test{ @Autowired private service se; } 不能使用 阅读全文

posted @ 2021-01-21 17:33 周公 阅读(87) 评论(0) 推荐(0) 编辑

springboot异步框架
摘要:学会使用@Async注解 为什么要用异步框架,它解决什么问题? 在springboot的日常开发中,一般都是同步调用的。但经常有特殊业务需要做异步处理,例如:注册新用户,送100个积分,或下单成功,发送push消息等等。 1.容错性、健壮性,如果积分出现异常,不能因为送积分而导致用户注册失败;因为用 阅读全文

posted @ 2021-01-12 17:22 周公 阅读(287) 评论(0) 推荐(0) 编辑

springboot配置文件信息(一)
摘要:springboot注释: https://docs.spring.io/spring-boot/docs/current/reference/html/appendix-application-properties.html#common-application-properties-server 阅读全文

posted @ 2021-01-11 11:55 周公 阅读(66) 评论(0) 推荐(0) 编辑

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示