Error 위와 같이 dependency 추가를 하고 @RequiredArgsConstructor 통하여 bean을 주입하고자 할 떄 아래와 같은 에러가 발생함. The blank final field certificateService may not have been initialized Solution 윈인 : lombok을 사용하기 위해선 의존성만 추가하면 되는 것이 아니라 Spring dependency를 통해 받아진 jar파일 실행 및 사용할 IDE를 설정 해주어야 하였음... 다운로드된 jar파일이 있는 위치에서 cmd창 실행 후, 아래 명령어 실행 Specify location에서 STS.exe 경로 지정 하면 끝 Thank you!
반응형
Spring/error
Error @Override public List findMenus(String id) { Map params = new HashMap(); params.put("id", appId); return jdbcTemplate.queryForList(sqlSelectMenus, params, Menu.class); } org.springframework.jdbc.IncorrectResultSetColumnCountException: Incorrect column count: expected 1, actual 8 at org.springframework.jdbc.core.SingleColumnRowMapper.mapRow(SingleColumnRowMapper.java:87) at org.springframew..
spring: datasource: driver-class-name: net.sf.log4jdbc.sql.jdbcapi.DriverSpy url: jdbc:log4jdbc:oracle:thin:@localhost:1521:XE username: admin password: 1234 위 처럼 log4jdbc를 사용하기 위하여 수정하여 아래와같은 에러가 발생 org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'inMemoryDatabaseShutdownExecutor' defined in class path resource [org/springframework/boot/devtools/a..
https://momobob.tistory.com/8 [Spring Error 기록] CORS policy 해결방법, 모든 Origin 허용방법 Access to XMLHttpRequest at 'http://localhost:8888' from origin 'http://localhost:9091' has been blocked by CORS policy: Response to prefligt request doesn't pass access control check: No 'Access-Co.. momobob.tistory.com 위 방식만 적용했을 때, CORS policy를 해결하였지만, JWT 혹은 Security의 RememberMe를 사용할 경우 아래처럼 Cookies가 정상적으로 생성되지 ..
WARN 252200 --- [nio-8080-exec-1] o.s.w.s.r.ResourceHttpRequestHandler : Path with "WEB-INF" or "META-INF":[WEB-INF/jsp/login.jsp] 위 에러 발생시 pom.xml에 아래 dependency 추가 org.apache.tomcat.embed tomcat-embed-jasper
Ajax 통신시 json 형태로 데이터를 주고 받기 위해서는 아래의 dependency 추가했어야 하였음.. org.codehaus.jackson jackson-mapper-asl 1.9.13
Access to XMLHttpRequest at 'http://localhost:8888' from origin 'http://localhost:9091' has been blocked by CORS policy: Response to prefligt request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. 위와 같은 에러 발생시 두가지 설정 방법과 서버에서 설정 시 모든 도메인 허용 방법 1. Chrome 브라우저 속성 args 추가하는 방법 - chrome 실행파일 오른쪽 마우스 클릭 > 속성 클릭 - 바로가기 > 대상(T) 마지막에 --ar..
*************************** APPLICATION FAILED TO START *************************** Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to determine suitable jdbc url Action: Consider the following: If you want an embedded database (H2, HSQL or Derby), please put it on the classpath. If you have database s..
반응형