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
- Java
- JShell
- 기초코딩
- 프로그래밍기초
- 자바프로그래밍
- 자바 스프링
- spring
- 메소드
- 초보코딩탈출
- 자바
- 배열
- 클래스
- Git
- JAVA기초
- eclips
- 이클립스
- 데이터베이스
- Elk
- 프로그래밍
- 프로그래밍언어
- 리눅스
- 알고리즘
- github
- 코딩초보
- 제이쉘
- 초보코딩
- 스프링 기초
- 자바기초
- 스프링
- 컴퓨터과학개론
Archives
- Today
- Total
키보드워리어
[스프링] application.properties란? 본문
728x90
application.properties?
web.xml은 Servlet 2.5 버전 이전에 사용되던 web 애플리케이션의 배포 서술자(descriptor) 파일입니다.
하지만 Servlet 3.0부터는 web.xml 대신 자바 기반의 설정(Configuration) 클래스를 사용할 수 있게 되었고,
이후 Spring Boot에서는 web.xml 대신 application.properties 또는 application.yml 파일을 사용하도록 권장하고 있습니다.
application.properties는 스프링 부트에서 사용되는 설정 파일 중 하나로, 애플리케이션에 필요한 여러 가지 속성을 정의할 수 있습니다. 예를 들어, 데이터베이스 연결 정보, 포트 번호, 로깅 설정 등을 application.properties 파일에서 정의할 수 있습니다.
데이터베이스 연결 예시
spring.datasource.url=jdbc:mysql://localhost:3306/mydb
spring.datasource.username=root
spring.datasource.password=password
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
디버그 로깅레벨
logging.level.com.example=DEBUG
html 연결
spring.thymeleaf.prefix=classpath:templates/
spring.thymeleaf.check-template-location=true
spring.thymeleaf.suffix=.html
spring.thymeleaf.mode=HTML5
spring.thymeleaf.cache=false
spring.thymeleaf.order=0
*index.html 파일은
src/main/resources/template 디렉토리에 위치해야 합니다.
포트번호
server.port=8080
spring.security
spring.security.user.name=test
spring.security.user.password=****
728x90
'Spring framework' 카테고리의 다른 글
[Spring MVC] 공식문서 정리 - MVC (0) | 2023.07.25 |
---|---|
[Spring] @Target에 대해서 알아보자. (0) | 2023.06.14 |
[스프링] SOLID에 대해서 (2) | 2023.05.07 |
[spring framework] 롬복 어노테이션 기능 구현 (0) | 2023.05.05 |
[스프링] Thymeleaf로 index.html연결 실습 (0) | 2023.04.12 |