250x250
Notice
Recent Posts
Recent Comments
Link
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- JPA
- GC로그수집
- Union-find
- 힙덤프
- BFS
- 스프링부트
- html
- Properties
- Java
- NIO
- priority_queue
- map
- math
- scanner
- 리소스모니터링
- List
- set
- alter
- date
- 스택
- 큐
- string
- sql
- Calendar
- javascript
- deque
- spring boot
- CSS
- dfs
- union_find
Archives
- Today
- Total
매일 조금씩
[스프링 부트] application.properties 세팅 참고 본문
728x90
반응형
application.properties 를 세팅할 수 있는 방법중 하나.
이렇게 properties 파일을 여러개 둔다.
여기선 로컬에서 실행시 application-local.properties를 사용하고
서버에서 실행시 application-prod.properties를 사용한다.
그리고 둘중 어느것을 사용할지 정해주는게 application.properties이다.
> application.properties
로컬일때,
server.port=8080
spring.profiles.active=local
서버일때,
server.port=8080
spring.profiles.active=prod
> application-local.properties
spring.datasource.url=jdbc:tibero:thin:@ip번호:port번호:tibero
spring.datasource.driver-class-name=com.tmax.tibero.jdbc.TbDriver
spring.datasource.username=유저네임
spring.datasource.password=비번
mybatis.type-aliases-package=wapl.ai.driveapi
mybatis.configuration.jdbc-type-for-null=varchar
mybatis.mapper-locations=/mapper/**/*.xml
mybatis.configuration.map-underscore-to-camel-case=true
spring.jpa.hibernate.ddl-auto=none
spring.jpa.open-in-view=false
spring.jpa.properties.hibernate.show_sql=true
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.Oracle10gDialect
spring.jpa.properties.hibernate.format_sql=true
spring.jpa.properties.hibernate.use_sql_comments=true
spring.servlet.multipart.enabled=true
spring.servlet.multipart.max-file-size=6144MB
spring.servlet.multipart.max-request-size=6144MB
spring.servlet.multipart.location=C:\\temp\\spring_uploaded_files
logging.level.com.spring.ibatis.UserMapper=DEBUG
> application-prod.properties
spring.datasource.driver-class-name=com.tmax.tibero.jdbc.TbDriver
spring.datasource.jndi-name=네임
spring.jta-enabled=false
spring.jpa.hibernate.ddl-auto=none
spring.jpa.properties.hibernate.show_sql=true
spring.jpa.properties.hibernate.format_sql=true
spring.jpa.properties.hibernate.use_sql_comments=true
logging.level.org.hibernate.type.descriptor.sql=trace
spring.jpa.database-platform=org.hibernate.dialect.Oracle10gDialect
mybatis.type-aliases-package=wapl.ai.driveapi
mybatis.configuration.jdbc-type-for-null=varchar
mybatis.mapper-locations=/mapper/**/*.xml
mybatis.configuration.map-underscore-to-camel-case=true
spring.jpa.open-in-view=false
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.Oracle10gDialect
spring.servlet.multipart.enabled=true
spring.servlet.multipart.max-file-size=6144MB
spring.servlet.multipart.max-request-size=6144MB
spring.servlet.multipart.location=C:\\temp\\spring_uploaded_files
logging.level.com.spring.ibatis.UserMapper=DEBUG
728x90
반응형
'Spring Framework' 카테고리의 다른 글
[스프링] 비동기 서비스 구현하기 (@Async 사용) (0) | 2022.02.24 |
---|---|
[스프링] 파일 삭제 기능 recursive 구현 JPA 사용 (0) | 2021.12.22 |
[스프링] batch + scheduler로 주기적인 파일 삭제 구현 (1) | 2021.12.20 |
Spring boot 에서 JPA 세팅 (application.properties 설정) (0) | 2021.12.14 |
Spring boot와 JPA로 파일 업로드 API 구현(서버/DB에 저장, PDF를 이미지, 이미지를 썸네일로 변환) (0) | 2021.12.13 |