本文重在理解这个代码结构: 文章来自:https://blog.csdn.net/lh87270202/article/details/100990482 1、接口定义,注意feign接口不能再继承其它接口,这个接口定义包需要抽象出公共的api jar, 当然包括请请求对象和返回对象都需要抽象成公共 ...
分类:
编程语言 时间:
2020-12-04 11:27:22
阅读次数:
6
通过静态方法获取,你也可以封装一个静态方法出来 @GetMapping(value = "") public String center() { ServletRequestAttributes servletRequestAttributes = (ServletRequestAttributes ...
分类:
编程语言 时间:
2020-11-16 13:23:52
阅读次数:
9
所谓自动装配,就是将一个 Bean 注入到其他 Bean 的 Property 中,类似于以下: <bean id = "customer" class = "com.shiyanlou.spring.autowire.common.Customer" autowire = "byName" /> ...
分类:
其他好文 时间:
2020-11-04 19:21:46
阅读次数:
33
package com.msun.drug.api.doctor; import cn.hutool.core.date.DateTime; import com.alibaba.fastjson.JSON; import org.junit.Before; import org.junit.Tes ...
分类:
编程语言 时间:
2020-10-13 17:40:47
阅读次数:
31
今天在测试Spring的AOP时,发现使用注解配置AOP的方式会导致通知的执行顺序紊乱。【最终通知居然在异常通知之前执行了】 测试代码 (1)定义TargetInterface目标接口 `public interface TargetInterface { public abstract void ...
分类:
编程语言 时间:
2020-10-12 20:03:14
阅读次数:
26
戴着假发的程序员出品 抖音ID:戴着假发的程序员 欢迎关注 [查看视频教程] 源码: 1 @java.lang.Deprecated 2 org.springframework.beans.factory.annotation.Autowire autowire() default org.spri ...
分类:
其他好文 时间:
2020-10-07 20:49:39
阅读次数:
23
Spring Boot 的核心配置文件用于配置 Spring Boot 程序,名字必须以 application 开始 一、核心配置格式 1. .properties 文件(默认采用该文件) 在 02-springboot-springmvc 项目基础上,进行修改,也就是在上一个项目上 项目名称为: ...
分类:
编程语言 时间:
2020-08-31 13:28:23
阅读次数:
69
<!--1.無參構造創建bean,反射,通過setter方法--> <!--默認單例bean工廠;--> <!--動態注入默認根據類型--> <bean id="stu" class="cn.kgc.kb08.spring.entity.Student" autowire="byType" scop ...
分类:
编程语言 时间:
2020-08-03 17:22:08
阅读次数:
87
public SeckillUser getSeckillUser(long id) { //查redis缓存 String seckillGoods = stringRedisTemplate.opsForValue().get(SeckillUserKey.seckillUserKey.getP ...
分类:
其他好文 时间:
2020-07-30 18:10:33
阅读次数:
58
spring在初始化之后, 还调用了一次 Bean 的后置处理器. 代码片段: org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory#applyBeanPostProcessorsAfterIniti ...
分类:
其他好文 时间:
2020-07-28 00:30:16
阅读次数:
109