SpringBoot
Hakka_Stephen
这个作者很懒,什么都没留下…
展开
-
SpringBoot项目打包部署
集成测试整体开发完成之后进入集成测试,spring boot项目的启动入口在 Application类中,直接运行run方法就可以启动项目,但是在调试的过程中我们肯定需要不断的去调试代码,如果每修改一次代码就需要手动重启一次服务就很麻烦,spring boot非常贴心的给出了热部署的支持,很方便在web项目中调试使用。pom需要添加以下的配置:<dependencies> &l...转载 2018-05-16 11:44:29 · 249 阅读 · 0 评论 -
Springboot应用启动以及关闭时完成某些操作
一:启动时完成数据加载等需求实现ApplicationListener接口,官方文档截图:ApplicationListener接口的泛型类可以使用ApplicationStartedEvent和ApplicationReadyEvent应用监听器事件执行先后顺序如下:ApplicationStartingEventApplicationEnvironmentPreparedEventApplic...原创 2018-06-14 11:12:06 · 22358 阅读 · 0 评论 -
SpringBoot自定义数据类型转换器
@EnableWebMvc@Configurationpublic class WebDataConvertConfig extends WebMvcConfigurerAdapter { @Override public void configureMessageConverters(List<HttpMessageConverter<?>> co...原创 2018-10-18 16:18:52 · 2670 阅读 · 0 评论