본문 바로가기

일이야기/Environment5

Intellij 에서 springboot live reload 1. Maven / Gradle 로 devtools 추가 Maven org.springframework.boot spring-boot-devtools true Gradle dependencies { compileOnly("org.springframework.boot:spring-boot-devtools") } 2. Intellij 에서 Build project automeatically 체크 3-1. 2021.2 이전 버전 intellij 에서 compiler.automake.allow.when.app.running 체크 (2021.2 이전) 3-2. 2021.2 이후 버전 intellij 에서 Allow auto-make to start even if developed application is cur.. 2022. 5. 16.
톰캣 구동시 SetPropertiesRule관련 경고 나올 때 이클립스에서 tomcat 구동시에 아래 경고 나올 때... org.apache.tomcat.util.digester.SetPropertiesRule begin 경고: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.j2ee.server:XXXXXX' did not find a matching property. 서버 뷰에서 해당 서버를 클릭하면 소스코드 뷰 쪽에 서버 오버뷰 화면이 나오는데 거기서 ‘Publish module contents to separate XML files’ 체크박스를 체크하면 해결된다. 참 쉽쬬잉~~ 2015. 3. 10.
Tomcat APR java.library.path 못찾는 현상 The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path..... 위와 같은 메시지가 나올 시 아파치웹서버와 연동하지 않으면 그냥 사용해도 괜찮겠지만, 처리를 하려면 sever.xml의 내용 중 아래 사항을 주석처리하면 해결... Line 23 : 2015. 3. 10.
Eclipse 에서 tomcat lib 가져오기 자세한 오류 사항내용은 기억나지 않지만 더듬더듬... 첫번째 case. 오류내용javax.servlet.http.HttpServlet cannot be resolved. It is indirectly referenced from required .class files 원인Tomcat_home/lib 패스를 잡아주지 않았을 경우 발생 두번째 case. 오류내용blahblah~ j2ee.jar not load... (정확한 오류가 기억 안남 ㅠㅠ) 원인WEB-INF/lib 에 j2ee.jar(또는 jsp-api.jar)와 tomcat/lib/servlet-api.jar가 충돌하는 경우 해결Project -> Properties -> JAVA Build Path -> Libraries -> Add Librar.. 2015. 3. 10.
반응형