spring 라이브러리
-
[spring] spring 라이브러리맨땅에코딩/java 2020. 10. 6. 22:17
gradle을 사용해 spring project 를 생성후 따로 was 설정없이 로컬소스가 서버에 올라간 것을 알 수 있다. spring boot 라이브러리 안에 tomcat이 있기 때문인데 그 외 여러 라이브러리들을 살펴보자 build.gradle 파일을 살펴보면 dependencies { implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' implementation 'org.springframework.boot:spring-boot-starter-web' testImplementation('org.springframework.boot:spring-boot-starter-test') { exclude group: 'org.ju..