package com.geostar.geostack.git_branch_manager.config; import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component; @Component
@ConfigurationProperties
public class MyConfig { @Value("${server.port:8080}")
private int port; public int getPort() {
return port;
}
}
相关文章
- Spring Boot程序获取tomcat启动端口
- Spring Boot - 修改Tomcat默认的8080端口
- idea中使用tomcat 方式启动spring boot项目
- eclipse创建spring boot项目,tomcat启动成功,但http://localhost:8080无法访问报错404解决方案
- spring boot tomcat 打本地包成war,通过Tomcat启动时出现问题: ZipException: error in opening zip file
- Spring Boot 应用程序启动流程分析
- 使用Spring boot 嵌入的tomcat不能启动: Unregistering JMX-exposed beans on shutdown
- Spring Boot启动过程(四):Spring Boot内嵌Tomcat启动
- 两个spring boot项目war部署到tomcat 其中一个无法正常启动
- eclipse创建spring boot项目,tomcat启动成功,但http://localhost:8080无法访问报错404解决方案