使用 application.properties 中配置的属性:@Value 注解。
@RestController
public class HelloWorldController {
@Value("${server.port}")
String port;
@RequestMapping(value = "hi")
public String hello(){
return "hello world! I am from " + port;
}
}
使用 application.properties 中配置的属性:@Value 注解。
@RestController
public class HelloWorldController {
@Value("${server.port}")
String port;
@RequestMapping(value = "hi")
public String hello(){
return "hello world! I am from " + port;
}
}
上一篇:React 组件传值
在application.properties中配置spring.datasource.username=rootspring.datasource.pa
今天在练习SpringSecurity框架的时候,为了运行时避免冲突,在properties中设置了其他的端口号,以便测试时使用server.port=8081s
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M