04 2019 档案

摘要:@PropertySource:加载指定的配置文件 @ImportResource:导入Spring的配置文件,让配置文件里面的内容生效 1 <?xml version="1.0" encoding="UTF-8"?> 2 <beans xmlns="http://www.springframewo 阅读全文
posted @ 2019-04-28 16:37 honghj 阅读(705) 评论(0) 推荐(0) 编辑
摘要:1 package com.hoje.springboot.bean; 2 3 import org.springframework.beans.factory.annotation.Value; 4 import org.springframework.boot.context.properties.ConfigurationProperties; 5 import or... 阅读全文
posted @ 2019-04-28 10:50 honghj 阅读(1124) 评论(0) 推荐(0) 编辑
摘要:@ConfigurationProperties与@value区别 @ConfigurationProperties @value 只是在某个业务逻辑中获取一下配置的某些值,使用@Value 专门编写一个javaBean来和配置文件进行映射,我们就直接使用@ConfigurationProperti 阅读全文
posted @ 2019-04-28 10:49 honghj 阅读(3943) 评论(0) 推荐(1) 编辑
摘要:properties配置文件编码问题 阅读全文
posted @ 2019-04-28 09:00 honghj 阅读(2363) 评论(0) 推荐(0) 编辑
摘要:一、配置文件 SpringBoot使用一个全局的配置文件,配置文件名是固定的; application.properties application.yml 配置文件的作用:修改SpringBoot自动配置的默认值;SpringBoot在底层都给我们自动配置好; YAML :YAML Ain't a 阅读全文
posted @ 2019-04-28 08:40 honghj 阅读(248) 评论(0) 推荐(0) 编辑
摘要:一、利用向导快速搭建Spring Boot应用 创建一个controller package com.hoje.springboot.Controller; import org.springframework.stereotype.Controller; import org.springfram 阅读全文
posted @ 2019-04-19 16:48 honghj 阅读(436) 评论(0) 推荐(0) 编辑