码迷,mamicode.com
首页 >  
搜索关键字:spring mvc 总体概况    ( 62232个结果
springcloud gateway动态路由实现,mysql存储配置
1、mysql数据库表结构 2、pom.xml依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> ...
分类:数据库   时间:2021-02-06 11:44:36    阅读次数:0
05 Spring Boot项目搭建步骤(超详细)
在 Spring Tools 4 for Eclipse 中依次选择 File->New->Maven Project 完了上述操作之后,在 pom.xml 中添加 Spring Boot 的依赖,代码如下所示。 <parent> <groupId>org.springframework.boot< ...
分类:编程语言   时间:2021-02-06 11:43:13    阅读次数:0
5.2 spring5源码--spring AOP源码分析二--切面的配置方式
目标: 1. 什么是AOP, 什么是AspectJ 2. 什么是Spring AOP 3. Spring AOP注解版实现原理 4. Spring AOP切面原理解析 一. 认识AOP及其使用 详见博文1: 5.1 Spring5源码--Spring AOP源码分析一 二. AOP的特点 2.1 S ...
分类:编程语言   时间:2021-02-05 11:01:07    阅读次数:0
【Spring】动态代理模板
动态代理模板 /** * Description : * 公用这个类,自动生成代理类 * * @author : AirCL * Date : 2021/2/4 * Time : 20:27 */ public class ProxyInvocationHandler implements Invo ...
分类:编程语言   时间:2021-02-05 10:47:05    阅读次数:0
Springboot+Spring-Security+JWT Sso单点登录
单点登录中目前比较流行的一种使用方式,就是springsecurity+jwt实现无状态下用户登录;下面是对于Spring-Security进行单点登录使用token来进行交互的一种方式。第一次写博客请多多指教如果有更好的方式或者是错误的点麻烦请指教。 Spring-Security的主要几个实现类 ...
分类:编程语言   时间:2021-02-04 11:52:26    阅读次数:0
重写定义Spring Boot FeignClient 捕获异常信息
FeignClient 默认的解析器: public static FeignException errorStatus(String methodKey, Response response) { // 这里做了处理 String message = format("status %s readi ...
分类:编程语言   时间:2021-02-03 11:08:33    阅读次数:0
基于 spring boot 下logback 的 logback-spring.xml 配置文件
true UTF-8 %d{yyyy-MM-dd HH:mm:ss.SSS} %highlight(%-5level) %magenta([PID:${PID:-}]) %green([%15.15thread]) %cyan(%40.40logger:%-5.5L):%msg%n ${PATH}/ ...
分类:编程语言   时间:2021-02-03 11:07:10    阅读次数:0
Spring 事务、异步和循环依赖有什么关系?
前言 在循环依赖中有一种循环依赖,就是自注入:自己依赖自己。 事务的自注入 在 Spring 自调用事务失效,你是怎么解决的? 有小伙伴提出可以自己注入自己来解决事务失效。 具体使用方式如下: @Slf4j @Service public class OrderBizServiceImpl impl ...
分类:编程语言   时间:2021-02-03 10:46:35    阅读次数:0
@FeignClient注解
Spring Cloud 是目前最火的微服务框架,Feign 作为基础组件之一,在 Spring Cloud 体系中发挥了重要的作用。 一、FeignClient注解 FeignClient注解被@Target(ElementType.TYPE)修饰,表示FeignClient注解的作用目标在接口上 ...
分类:其他好文   时间:2021-02-03 10:31:00    阅读次数:0
spring常见注解
@RestController注解,相当于@Controller+@ResponseBody两个注解的结合,返回json数据不需要在方法前面加@ResponseBody注解了,但使用@RestController这个注解,就不能返回jsp,html页面,视图解析器无法解析jsp,html页面 @Re ...
分类:编程语言   时间:2021-02-02 11:28:20    阅读次数:0
62232条   上一页 1 ... 57 58 59 60 61 ... 6224 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!