카테고리 없음

[스프링] properties -> yml

웨일파도 2023. 7. 7. 13:12
반응형

application.properties

# spring boot banner
# http://patorjk.com/software/taag/#p=display&f=Graffiti&t=Type%20Something%20
# https://docs.spring.io/spring-boot/docs/current/reference/html/features.html#features.spring-application

# version
application.version = appVersion: 1.0.0
application.title = thejoeun company

# tomcat
server.port = 9090

# Live Reload
spring.devtools.livereload.enabled=true

# jsp
spring.mvc.view.prefix=/WEB-INF/view/
spring.mvc.view.suffix=.jsp

 

요즘에는 .yml 파일로 사용함

application.yml

server:
  port: 8070

application:
  version: AppVersion 1.0.0
  title: thejoeun company

spring:
  mvc:
    view:
      prefix: /WEB-INF/view/
      suffix: .jsp
  devtools:
    livereload:
      enabled: true
반응형