org.springframework.beans.factory.annotation.Autowired AutowiredAnnotationBeanPostProcessor extends InstantiationAwareBeanPostProcessorAdapter public ...
分类:
其他好文 时间:
2019-12-11 17:18:19
阅读次数:
86
beans.xml <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchem ...
分类:
编程语言 时间:
2019-12-10 13:26:41
阅读次数:
79
packagecom.holytax.accenture_fp_in.datasource;importjavax.sql.DataSource;importorg.springframework.beans.factory.annotation.Qualifier;importorg.springframework.boot.autoconfigure.jdbc.DataSourceBuilde
分类:
数据库 时间:
2019-12-10 01:16:40
阅读次数:
143
今天遇到使用Feign调用微服务,传递参数时遇到几个问题 1.RequestParam.value() was empty on parameter 0 解决方法: 加上注解的描述,修改为 如果是@RequestBody不需要注解的描述 2.Feign多参数的问题 遇到报错Method has to ...
分类:
编程语言 时间:
2019-12-10 00:45:18
阅读次数:
189
简介 Spring提供spring test 5.2.1.RELEASE.jar 可以整合junit。 优势:可以简化测试代码(不需要手动创建上下文,即手动创建spring容器) 使用spring和junit集成的步骤 1.导入jar包 2.创建包com.igeek.test,创建类SpringTe ...
分类:
编程语言 时间:
2019-12-08 15:52:46
阅读次数:
134
解决办法 这里找不到根路径,也就找不到Spring-config.xml的配置,所以加上更改根路径的注解@WebAppConfiguration(“src/main/resources”)就解决了 1 @RunWith(SpringJUnit4ClassRunner.class) 2 @WebApp ...
分类:
编程语言 时间:
2019-12-08 15:47:18
阅读次数:
93
一:基于接口(JDK1.3之后提供): import com.aiitec.service.IAccountService;import com.aiitec.utils.TransactionManager; import org.springframework.beans.factory.ann ...
分类:
其他好文 时间:
2019-12-07 14:37:05
阅读次数:
79
1、注意问题、es和redis同时使用会报错 解决: package com.bw; import org.springframework.beans.factory.InitializingBean; import org.springframework.stereotype.Component; ...
分类:
数据库 时间:
2019-12-07 14:18:15
阅读次数:
110
package com.infosec.sso.component.externalauthandsyn; import java.util.Map; import javax.annotation.PostConstruct; import org.springframework.beans.fa ...
分类:
编程语言 时间:
2019-12-06 13:27:13
阅读次数:
194
1 demo package com.test.domi.config; import org.springframework.beans.factory.annotation.Configurable; import org.springframework.scheduling.annotatio ...
分类:
编程语言 时间:
2019-12-06 11:16:32
阅读次数:
100