목록2024/02 (4)
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...
사전 준비 java 17 이상, IDE (IntelliJ or Eclipse) 설치 * Spring Boot 3 ~ 은 JDK 17 이상 사용해야한다. 프로젝트 생성 스프링 부트 스타터 사이트로 이동해서 스프링 프로젝트 생성 Spring Initializr - Project : Gradle/Maven 필요한 라이브러리를 가져오고 빌드 하는 라이플사이클 까지 도와주는 툴 과거에는 Maven , 요즘 추세는 Gradle 많이 씀 - Spring Boot SNAPSHOT : 아직 만들고 있는 버전 M2 : 아직 정식 Release 된 버전이 아님 따라서 뒤에 영어가 붙어 있지 않은 정식버전의 최신 버전을 사용하도록 함 - Project Metadata Group : 도메인 Artifact : 빌드 결과물 (프..