标签:stc 内容 web jdb 核心 ref pretty roo bash
核心配置文件是指在resources根目录下的application.properties
或application.yml
配置文件,读取这两个配置文件的方法有两种,都比较简单。
核心配置文件application.properties
内容如下:
server.port=9090 test.msg=Hello World Springboot!
@Value
方式(常用)1 @RestController 2 public class WebController { 3 4 @Value("${test.msg}") 5 private String msg; 6 7 @RequestMapping(value = "index", method = RequestMethod.GET) 8 public String index() { 9 return "The Way 1 : " +msg; 10 } 11 }
注意:在@Value
的${}中包含的是核心配置文件中的键名。在Controller类上加@RestController
表示将此类中的所有视图都以JSON方式显示,类似于在视图方法上加@ResponseBody
。
访问:http://localhost:9090/index 时将得到The Way 1 : Hello World Springboot!
Environment
方式@RestController public class WebController { @Autowired private Environment env; @RequestMapping(value = "index2", method = RequestMethod.GET) public String index2() { return "The Way 2 : " + env.getProperty("test.msg"); } }
注意:这种方式是依赖注入Evnironment
来完成,在创建的成员变量private Environment env
上加上@Autowired
注解即可完成依赖注入,然后使用env.getProperty("键名")
即可读取出对应的值。
访问:http://localhost:9090/index2 时将得到The Way 2 : Hello World Springboot!
@ConfigurationProperties
注解,通过getter、setter方法注入及获取配置为了不破坏核心文件的原生态,但又需要有自定义的配置信息存在,一般情况下会选择自定义配置文件来放这些自定义信息,这里在resources/config
目录下创建配置文件my-web.properties
resources/config/my-web.properties
内容如下:
web.name=isea533
web.jdbc.username=root
web.jdbc.password=root
创建管理配置的实体类:
@ConfigurationProperties(locations = "classpath:config/my-web.properties", prefix = "web") @Component public class MyWebConfig{ private String name; private Jdbc jdbc; class Jdbc { private String username; private String password; //getter... } public Integer gePort(){ return this.port; } public Jdbc getJdbc() { return this.jdbc; } }
注意:
在@ConfigurationProperties
注释中有两个属性:
locations
:指定配置文件的所在位置prefix
:指定配置文件中键名称的前缀(我这里配置文件中所有键名都是以web.
开头)使用@Component
是让该类能够在其他地方被依赖使用,即使用@Autowired
注释来创建实例。
@PropertySource
注解,然后使用@Value
逐个注入配置1 @Configuration 2 @PropertySource("classpath:test.properties") 3 public class ELConfig { 4 5 @Value("${book.name}") 6 private String bookName; 7 8 //PropertySourcesPlaceholderConfigurer这个bean,这个bean主要用于解决@value中使用的${…}占位符。假如你不使用${…}占位符的话,可以不使用这个bean。 9 @Bean 10 public static PropertySourcesPlaceholderConfigurer propertyConfigure() { 11 return new PropertySourcesPlaceholderConfigurer(); 12 } 13 14 public void outputSource() { 15 System.out.println(bookName); 16 } 17 }
标签:stc 内容 web jdb 核心 ref pretty roo bash
原文地址:http://www.cnblogs.com/junzi2099/p/7509045.html