본문 바로가기
728x90
반응형

0254

[request processing failed; nested exception is java.lang.nullpointerexception] 왜 서비스로 안넘어가지? 1. 널포인트 익셉션은 에러의이유가 너무 방대했다. 뭐가 문제지.. 2. controller와 service에 프린트를 해보니 도통 서비스로 넘어가질 않는거다. 3. 무언가 연결이 안되었구나.. 하고 보니 4. 컨트롤러에 @AllArgsConstructor 를 빼먹었다. @AllArgsConstructor란 클래스에 존재하는 모든 필드에 대한 생성자를 자동으로 생성한다. lombok라이브러리에 속해있다. lombok이란 자바에서 @Getter, @Setter 같은 annotation 기반으로, 기존 DTO, VO, Domain Class 작성할 때, 멤버 변수에 대한 Getter/Setter Method, Equals(), hashCode(), ToString()과 멤버 변수에 값을 설정하는 생성자 등등.. 2021. 10. 12.
[security] 스프링 시큐리티 제외하기 ajax를 사용해서 아이디 중복체크를 하는 코드를짜는데.. 자꾸 data 값에 권한에관련된 html이 담기는것.. 인터셉트를 하는 코드에서 제외하는 코드를 추가하여 해당 url패턴에서는 제외시켰다. (pattern에 내가 제외하고자하는 url을 넣어주면 된다.) https://kimsaemjava.tistory.com/237 스프링 시큐리티 제외하기 - 이미지깨짐 해결 스프링 시큐리티를 적용하고 나면 이미지와 css 파일이 적용된 폴더에 권한 적용이 되지 않았기 떄문에 웹 페이지가 깨져서 보이게 됩니다. image, css, js는 시큐리티 설정을 해제해 보도록 하겠습 kimsaemjava.tistory.com 2021. 10. 11.
[스프링시큐리티] 표현식 표현식 설명 hasRole([role]) hasAuthority([authority]) 해당권한이 있으면 true hasAnyRole([role,role2]) hasAnyAuthority([authority]) 여러 권한들 중에서 하나라도 해당하는 권한이 있으면 true principal 현재 사용자 정보를 의미 permitAll 모든 사용자에게 허용 denyAll 모든 사용자에게 거부 isAnonymous() 익명의 사용자의 경우(로그인을 하지않은경우도 해당) isAuthenticated() 인증된 사용자면 true isFullyAuthenticated() Remember-me로 인증된 것이 아닌 인증된 사용자인경우 true 표현식은 거의 대부분 true/false를 리턴하기 때문에 조건문을 사용하는 .. 2021. 10. 9.
[spring] org.mybatis.spring.MyBatisSystemException: 시큐리티, 회원도메인, 회원 Mapper설계 요즘은 코드로 배우는 스프링 웹 프로젝트라는 책을 보면서 회원부분을 작업중이다. -- 에러 메세지 org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: java.lang.NullPointerException ### The error may exist in com/dohyeong/mapper/MemberMapper.xml ### The error may involve com.dohyeong.mapper.MemberMapper.read ### The error occurred while handl.. 2021. 10. 7.
Autowired cannot be resolved to a type 에러 import org.springframework.beans.factory.annotation.*; 를 추가한다. 2021. 10. 5.
[sts]org.apache.log4j.Logger cannot be resolved to a type 에러 해결법은 pom.xml에서 runtime를 주석처리 해주면 된다. https://moon1226.tistory.com/93 Spring - Log4j cannot be resolved to a type 에러 spring project 진행할 때, 어노테이션으로 Log4j를 사용할 때 다음과 같은 에러가 나타났다. Multiple markers at this line - org.apache.log4j cannot be resolved to a type - org.apache.log4j... moon1226.tistory.com 2021. 9. 29.
728x90
반응형