목록Java/Spring (33)
재 현
cmd에 hello-spring > gradlew.bat build build > libs > java -jar ~~~~~~~~~~.jar 빌드 후 java11 requires가 뜰 때 오류 해결 방법 (https://hothoony.tistory.com/1105)
이 부분을 요렇게 수정하면 되네요 https://stackoverflow.com/questions/16119421/thymeleaf-concatenation-could-not-parse-as-expression
src > resources > static > index.html 생성하면 정적 화면을 웹 브라우저에 전달 spring은 굉장히 거대하기 때문에 검색하는 능력을 기르는 것이 중요하다. spring.io > projects > spring boot > learn > reference doc > "서치" https://docs.spring.io/spring-boot/docs/current/reference/html/ Spring Boot Reference Documentation The reference documentation consists of the following sections: Legal Legal information. Getting Help Resources for getting help..
스프링은 의존관계를 알아서 관리해준다. 즉, 하나의 라이브러리를 다운받으면 의존 관계에 있는 모든 라이브러리를 끌어서 다운받아 관리해준다는 뜻이다. spring-boot starter web (spring boot starter tomcat[웹서버] spring boot starter webmvc ) spring boot starter thymeleaf (타임리프 템플릿 엔진) spring boot starter 공통 ( 스프링 부트 + 스프링 코어 + 로깅) spring boot starter > spring boot > spring core spring boot starter logging > logback, slf4j spring boot starter test > junit : 테스트 프레임워크 ..