
springboot
tyrant_800
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
springboot redis 用法简介
springboot redis原创 2017-11-15 15:14:10 · 360 阅读 · 0 评论 -
springboot AOP+日志的注解实现
注解文件: @Target({ElementType.METHOD,ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface InvokeLog { String name() default ""; String description() default "";原创 2017-12-08 15:12:19 · 2315 阅读 · 1 评论 -
springboot 自定义配置文件
除了application.yml ,自定义另外的配置文件,如何读取。bus.yml:email: xxxx@163.com scheduleEnable: true定义配置文件读取类: /** bus.yml 参数读取 * @author xz * */ @Component @PropertySource("classpath:bus.yml") @ConfigurationProp原创 2017-12-12 11:23:27 · 6013 阅读 · 2 评论