에러 db에 system 계정으로 스카마를 생성 후 접속시 아래 에러 발생 ORA-01045: user TEST_DB lacks CREATE SESSION privilege; logon denied 원인 : 스키마 생성 시 지정한 유저에 세션 권한을 부여하지 않아 발생. 해결 : SESSION 권한 부여 GRANT CREATE SESSION TO TEST_DB;
반응형
Spring
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
Spring boot 실행시 아래와 같은 에러가 나왔다. 2020-12-08 23:12:31.312 ERROR 256300 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter : *************************** 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 a suitable driver class Action: Cons..
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..
반응형