daeng325 / KITRI_Best

0 stars 2 forks source link

Spring Boot 개발 환경 설정 #3

Closed daeng325 closed 4 years ago

daeng325 commented 4 years ago
daeng325 commented 4 years ago

규모가 커질수록 Gradle이 좋다고 함. Maven vs Gradle

daeng325 commented 4 years ago

“If possible, JSPs should be avoided. There are several known limitations when using them with embedded servlet containers.” DOCS 참고

제약 사항 ● JAR 프로젝트로 만들 수 없음, WAR 프로젝트로 만들어야 함 ● Java -JAR로 실행할 수는 있지만 “실행가능한 JAR 파일”은 지원하지 않음 ● 언더토우(JBoss에서 만든 서블릿 컨테이너)는 JSP를 지원하지 않음 ● Whitelabel 에러 페이지를 error.jsp로 오버라이딩 할 수 없음.

daeng325 commented 4 years ago

프로젝트 편의 상 Maven, JSP를 선택해서 진행하였다.