spring Spring Security 设置登录的用户名和密码的三种方式
第一种方式:通过配置文件 spring: security: user: name: root password: root 第二种方式:通过配置类 @Configuration public class SecurityConfig extends WebSecur...
spring 在SpringBoot中使用SpringSecurity
本教程是基于SpringMVC而创建的,不适用于WebFlux。(如果你不知道这两者,可以忽略这句提示) 提出一个需求 所有的技术是为了解决实际问题而出现的,所以我们并不空谈,也不去讲那么多的...
spring SpringBoot前端模板---thymeleaf
Springboot支持thymeleaf、freemarker、JSP,但是官方不建议使用JSP,因为有些功能会受限制,这里介绍thymeleaf和freemarker。 一、thymeleaf模板 thymeleaf模板的前端界面为....
spring --重点---自测可以Spring Boot 中关于自定义异常处理CustomErrorController
@RestControllerpublic class CustomErrorController extends BasicErrorController { @Autowired public CustomErrorController(ErrorAttributes errorAttributes, ...
spring Spring Boot异常处理详解
在Spring MVC异常处理详解中,介绍了Spring MVC的异常处理体系,本文将讲解在此基础上Spring Boot为我们做了哪些工作。下图列出了Spring Boot中跟MVC异常处理相关的类。 Spring Boot在启动...
spring Spring Boot 中关于自定义异常处理的套路!
在 Spring Boot 项目中 ,异常统一处理,可以使用 Spring 中 @ControllerAdvice 来统一处理,也可以自己来定义异常处理方案。Spring Boot 中,对异常的处理有一些默认的策略,我们分别来看。...
spring Spring boot 处理 error 的基本流程:
Controller -> 发生错误 -> BasicErrorController -> 根据 @RequestMapping(produces) 判断调用 errorHtml 或者 error 方法 然后: errorHtml -> getErrorAttrib...
spring Spring-Boot-Actuator
1、Actuator 分布式导致部署服务的增多,运维人员压力倍增,传统的运维方法已经不适应相应的变化,需要对应的监控措施来确保衡量服务的运行情况。actuator为Spring Boot提供监控。 启动Spri...
spring 在Spring Boot应用程序中禁用HTTP OPTIONS方法(跨容器)
先前的答仅适用于tomcat,因此也要添加我的。您可以通过例如使用标准的servlet过滤器来禁用方法交叉容器: import java.io.IOException; import javax.servlet.FilterChain; import jav...
spring Springboot 使用内置tomcat禁止不安全HTTP的方法
这篇文章主要介绍了Springboot 使用内置tomcat禁止不安全HTTP的方法,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教 Springboot 内置tomcat禁止...