
buildscript { ext { queryDslVersion = "5.0.0" }}plugins { id 'java' id 'war' id 'org.springframework.boot' version '3.3.8' id 'io.spring.dependency-management' version '1.1.7'}group = 'com.example'version = '0.0.1-SNAPSHOT'java { toolchain { languageVersion = JavaLanguageVersion.of(17) }}repositories { mavenCentral()}dependencies { implementation 'org.springframework.boot:spring-boot-starter-d..
스프링부트
2025. 2. 9. 00:30

1. 설정에서 프로젝트 자동 빌트 체크박스에 체크 함. 2. 모든 변경 내용 체크 함. 3. 타임리프 소스 변경 실시간 적용application.properties 에 아래 설정 추가.spring.thymeleaf.cache=false 위에 추가 해도 타임리프 실시간 소스 변경 적용 안될 시 아래 설정 추가.(서버 적용시 주석 처리 및 제거 할 것)spring.thymeleaf.prefix=file:src/main/resources/templates/
스프링부트
2025. 1. 27. 10:31