실행하는 폴더: build
컴파일 자바를 하면,, 소스- 메인- 자바에 들어있는 모든 자바파일을 컴파일해서 빌드에 둠
컴파일 테스트 하면 test에 들어있는 거
Gradle 빌드 도구
jar파일은 그레이들 다운 받는거?
그 컴퓨터에 그래이들이 설치되어이지 않아도 자동으로 다운받아서 설치.
레퍼파일 만드는 법: gradle wrapper
플러그인을 장착해야 작업들을 할 수 있음 .
$ Gradle 빌드도구
1. java 플러그인
gradle compilejava 하면 main만
gradle compiletestjava 하면 main 컴파일하고 test 작업이 수행됨 .
>gradle processResources: main의 resources 빌드 밑에 둠
>gradle processtestResources : 다른 작업 의존없이 test의 rescources만
* Gradle Java Plugin Task 관계도
>gradle classes : main밑에 자바 파일 & resources 컴파일
>gradle testclasses : main & test 밑에 자바 파일 & resources 컴파일
지금 인텔리제이에서 자동 빌드 업데이트가 안됨
그래서 ( 개발하는 동안만 !! ) 참고할 템플릿을 빌드폴더 말구 내가 작성한 src밑에 있는 파일을 쓰게 설정
---
#thymeleaf
spring.thymeleaf.prefix=file:src/main/resources/templates/
spring.web.resources.static-locations=file:src/main/resources/static/
spring.web.resources.cache.period=0
spring.profiles.active=dev
member.form, detail 수정
컨트롤러 refresh try catch 삭제 수정
'[네이버클라우드] 클라우드 기반의 개발자 과정 7기 > 웹프로그래밍' 카테고리의 다른 글
9/15 (0) | 2023.09.15 |
---|---|
git 사용 (0) | 2023.09.14 |
9/13 프로젝트 (0) | 2023.09.13 |
9/13 (0) | 2023.09.13 |
9/12 스프링부트 (0) | 2023.09.12 |