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 |
Tags
- Eclipse
- ubuntu
- MySQL
- git
- maven
- Tomcat
- JDBC
- 문서
- SpringBoot
- 오픈소스
- jpa
- oracle
- Core Java
- AJAX
- spring
- STS
- Spring Boot
- MSSQL
- JavaScript
- Exception
- Thymeleaf
- myBatis
- Docker
- Open Source
- Source
- 설정
- error
- PostgreSQL
- IntelliJ
- Python
Archives
- Today
- Total
목록DefaultProperties (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