spring boot 之参数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot 之参数相关的知识,希望对你有一定的参考价值。
spring.config.name
指的是spring boot启动的入口配置文件。默认是application.properties/yaml/yml.
如:java -jar xxx.jar --spring.config.name=myApplication;
spring.config.location
作用与spring.config.name一样。但是,要比spring.config.name指定的更多。它可以指定多个启动配置,同时也可以指定path和文件名。
如:java -jar xxx.jar --spring.config.location=classpath:/myApplication,/config/default.properties;
以上是关于spring boot 之参数的主要内容,如果未能解决你的问题,请参考以下文章
Spring Boot 2从入门到入坟 | 请求参数处理篇:常用参数注解之@RequestParam
Spring Boot 2从入门到入坟 | 请求参数处理篇:常用参数注解之@RequestParam
Spring Boot 2从入门到入坟 | 请求参数处理篇:常用参数注解之@PathVariable