Skip to content

Instantly share code, notes, and snippets.

@jayden-lee
Last active October 12, 2018 16:27
Show Gist options
  • Save jayden-lee/ad851d6fdc99e66236e97a0833a0f56f to your computer and use it in GitHub Desktop.
Save jayden-lee/ad851d6fdc99e66236e97a0833a0f56f to your computer and use it in GitHub Desktop.
Spring 프로파일 구성
spring:
profiles:
active: production
spring.profiles.active=production
logging:
level:
root: INFO
---
spring:
profiles: development
logging:
level:
root: DEBUG
---
spring
profiles: production
logging:
path: /tmp/
file: Log.log
level:
root: WARN
@Profile("production")
@Configuration
public class MyConfiguration {
// TODO
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment