일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- spring
- Thymeleaf
- oracle
- JDBC
- JavaScript
- Docker
- PostgreSQL
- Core Java
- Python
- 문서
- Tomcat
- MySQL
- MSSQL
- 오픈소스
- AJAX
- myBatis
- 설정
- SpringBoot
- Source
- Exception
- jpa
- error
- ubuntu
- IntelliJ
- Eclipse
- Spring Boot
- STS
- git
- Open Source
- maven
- Today
- Total
목록application.properties (3)
헤르메스 LIFE
Spring Boot의 버전에 따라 application properties 파일의 설정 경로가 약간 다르게 변했습니다. 확인 해봐야 합니다. yml 설정을 properties 설정으로 또는 properties 설정을 yml 설정으로 변경하는 Util 페이지 https://env.simplestep.ca/ Environment Variable Generator env.simplestep.ca Spring Boot 2.1.5 버전 ( https://docs.spring.io/spring-boot/docs/2.1.5.RELEASE/reference/html/common-application-properties.html ) Appendix A. Common application properties Append..
내장 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..