logging level 설정 변경 후 서버가 안뜰때 logging: level: root: ERROR # 전역 로깅 레벨 설정 org.springframework: ERROR org.springframework.web: ERROR org.springframework.security: ERROR com.app.feeling: ERRORapplication.yml 파일을 위와 같이 수정했는데 서버가 안뜬다. 정확한 원인을 모르겠어서 하나씩 지워나면서 해봤는데 root: ERROR요 부분이 문제 였다.전역 설정이라 다른 부분과 충돌이 일어나는 거 같다. logging: level: org.hibernate.SQL: ERROR org.hibernate.type.descriptor.sql.BasicBinder:.. PROJECT/TROUBLE SHOOTING 2025. 1. 22. 20:41
IndexOutOfBoundsException 에러 java.lang.IndexOutOfBoundsException: Index: 1, Size: 1에러 났는데 어디서 났는지 모르겠던 상황코드에 val (featureType, featureName) = key.split(".")이 부분이 있었는데 여기서 에러가 나는 것이였다. PROJECT/TROUBLE SHOOTING 2025. 1. 22. 19:35
maven dependency systemPath 배포 설정 develop develop_lib 0.0.1 system ${project.basedir}/src/main/lib/develop.jar 위와 같이 dependency 를 systemPath 를 사용할 경우 일반적인 maven의 경우 해당 jar 파일이 lib 밑에 포함이 되지 않는다. 해결법은 org.springframework.boot spring-boot-maven-plugin true build 설정에 해당 부분 추가 true PROJECT/TROUBLE SHOOTING 2021. 2. 3. 17:54
spring boot 기본 manifest 속성이 없습니다 manifest 는 프로젝트 기동 시의 시작점이 되는 부분을 말한다. spring boot 에서 기본으로 제공하는 pom.xml 으로 jar 파일을 만들고 실행하면 위와 같은 경우를 볼수 있다. 이 경우 pom.xml을 아래와 같이 수정한다. org.springframework.boot spring-boot-maven-plugin 2.4.2 ... repackage 추가된 부분은 repackage 이 부분이다. 추가 후 maven 만들면 폴더 구조가 바뀐것을 확인할수 있다. PROJECT/TROUBLE SHOOTING 2021. 1. 22. 14:31
No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK? maven 빌드시 위와 같은 에러가 났다면 컴파일에 사용하는 JAVA 설정을 찾지 못했다는 뜻이다. 1. eclipse > window > preferences > java > installed JREs 설정 확인 2. 프로젝트 설정 > Run As > Run Configurations > Jre 탭 > Runtime JRE 설정확인 PROJECT/TROUBLE SHOOTING 2021. 1. 20. 16:35
java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException: Failed to start component [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] 에러 로그를 살펴볼때 *************************** APPLICATION FAILED TO START *************************** Description: An attempt was made to call a method that does not exist. The attempt was made from the following location: org.apache.catalina.authenticator.AuthenticatorBase.startInternal(AuthenticatorBase.java:1355) The following method did not exist: javax.servlet.ServletContext.getVirtualServerName(.. PROJECT/TROUBLE SHOOTING 2021. 1. 12. 14:53
노트북 무선 네트워크 핫스팟 만들기 - 사이트 접속 불가 https://dev-elop.tistory.com/72 노트북 무선 네트워크 핫스팟 만들기 만드는 순서 1. 지원 여부 확인 - 호스트된 네트워크 지원 = 예 netsh wlan show drivers 2. 핫스팟 네트워크 설정 netsh wlan set hostednetwork mode=allow ssid=이름 key=비밀번호 keyUsage=persistent 2-1. ke.. dev-elop.tistory.com 핫스팟 만든 이후 사이트 접속 불가시 DNS 설정 확인 1. 네트워크 연결 제어판 이동 2. 핫스팟 무선 네트워트 - 속성 - TCP/IPv4 더블클릭 3. 기본 설정 DNS 서버 - 8.8.8.8 4. 보조 DNS 서버 - 8.8.4.4 위 설정은 구글 DNS 설정이니 다른 DNS 사용.. PROJECT/TROUBLE SHOOTING 2019. 12. 6. 10:42
ResourceHttpRequestHandler Path with "WEB-INF" or "META-INF" Spring Boot 에 jsp 적용시 위와 같이 에러 나는 경우 해당 jsp 파일을 찾지 못한 에러인데. javax.servlet jstl org.apache.tomcat.embed tomcat-embed-jasper maven 에 2개 다 설정해야 하는데 하나를 빼먹었다. 하나 추가 해서 해결 완료 PROJECT/TROUBLE SHOOTING 2019. 11. 6. 16:31
Boot Spring JDBC 연동 에러 Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary. spring.datasource.driver-class-name=com.mysql.jdbc.Driver 이제 안쓰인다고 에러 spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver 변경해서 처리 완료 java.sql.SQLException: The se.. PROJECT/TROUBLE SHOOTING 2019. 11. 5. 17:32
익스플로러 특정사이트 접속 안됨 익스플로러에서 특정사이트 및 특정사이트 하위 사이트로 접속이 안될 시, 인터넷 옵션 -> 보안 설정 -> 기본설정변경(Default level) PROJECT/TROUBLE SHOOTING 2019. 10. 29. 14:26
Spring was 기동시 xsi 스키마 에러 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd WAS 기동시 해당 스키마를 읽어 올수 없다고 에러가 날때 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd 위와 같이 버전 정보를 지우고 기동하면 해결 PROJECT/TROUBLE SHOOTING 2019. 10. 27. 12:46