목록2024/02/29 (3)
sugenius
회원 서비스 개발 아래와 같은 경우 메서드로 뽑는게 좋다. 단축키ㅡ Extract Method 회원 서비스 테스트 단축키 > Create Test 로 자동 테스트 케이스 기본 메서드 구현 가능
정적 컨텐츠 스프링 부트 정적 컨텐츠 기능 https://docs.spring.io/spring-boot/docs/2.3.1.RELEASE/reference/html/spring-boot-features.html#boot-features-spring-mvc-static-content Spring Boot Features Graceful shutdown is supported with all four embedded web servers (Jetty, Reactor Netty, Tomcat, and Undertow) and with both reactive and Servlet-based web applications. It occurs as part of closing the application con..
build.gradle developmentOnly 'org.springframework.boot:spring-boot-devtools' 그래도 적용이 안된다 ^^ ,, Edit Configurations... > Modify oprions > On 'Update' action > Update classes and resources 선택 Edit Configurations... > Modify oprions > On frame deactivation > Update classes and resources 선택 적용 후 확인 가능 application.properties 내용 추가 #devtools spring.devtools.restart.enabled=true #thymeleaf 사용 시 spring...