250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Open Source
- JDBC
- git
- Core Java
- Spring Boot
- Thymeleaf
- maven
- Exception
- error
- Docker
- jpa
- ubuntu
- oracle
- 설정
- PostgreSQL
- MSSQL
- STS
- myBatis
- JavaScript
- 문서
- Source
- SpringBoot
- 오픈소스
- Tomcat
- IntelliJ
- spring
- MySQL
- Python
- Eclipse
- AJAX
Archives
- Today
- Total
목록EmbeddedServletContainerCustomizer (1)
헤르메스 LIFE
[Spring Boot] Embedded Server Port 변경
내장 Tomcat 의 Port 번호를 변경하는 방법 여러가지 입니다. 정리 해 둡니다. 1, 설정파일 변경 ( 가장 쉬움 ) application.properties #Server port server.port=8081 application.yml #Server port server: port: 9091 2, 프로그램 환경 설정 2-1. DefaultProperties 설정 package simple.spring; import java.util.Collections; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.spr..
Spring Boot Framework
2023. 1. 29. 10:27