spring-boot
文章平均质量分 54
Wakfu
你好
展开
-
常用springboot注解
把最近项目中用到的注解拿出来解释了下,个人知识面有限,如有错误欢迎指正!1.SpringBoot/spring@SpringBootApplication:包含@Configuration、@EnableAutoConfiguration、@ComponentScan通常用在主类上。@Repository:用于标注数据访问组件,即DAO组件。@Service:用于标注业务层组件。 @RestCon原创 2017-04-21 16:47:26 · 2085 阅读 · 0 评论 -
springboot整合多个activemq
最近项目中出现了要整合多个ActiveMQ的需求,自己写了个基础的整合配置类,记录一下增加如下配置类/** * Created by wangyahui on 2017/05/15. */@Configurationpublic class ActiveMqConfig { @Bean(name = "firstConnectionFactory") @Primary原创 2017-05-17 17:00:14 · 2834 阅读 · 2 评论 -
io.lettuce.core.RedisCommandExecutionException: ERR no such key
io.lettuce.core.RedisCommandExecutionException: ERR no such key 是由spring-session 引起的BUG<dependency> <groupId>org.springframework.session</groupId> <artifactId>sp...原创 2018-08-24 16:29:46 · 34980 阅读 · 1 评论