728x90
◎설정 코드 에러
▶회원가입시 비밀번호 보안 설정 구현 과정에서 spring-security.xml 의 설정 파일에서 원인 모를 에러 발생
에러 조치 시도사항
▶ namespace(안보일시 spring-security.xml -우클릭- open with- spring config editor) 에서 beans체크 여부 확인
▶ 상단 메뉴에서 [ prorject - clean ], 패키지 익스플로러(package explorer)에서 지금 작업하시는 프로젝트를 우클릭하시고 [ maven - update project ] 를 시도
▶에러 해결 -> X
▶구글링을 통해 대체 코드로 작성
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans
xmlns="http://www.springframework.org/schema/security"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/security
http://www.springframework.org/schema/security/spring-security.xsd">
<beans:bean id="bcryptPasswordEncoder"
class="org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder" />
</beans:beans>
◎결론
▶xml 설정시 버전의 문제였는지 정확한 원인은 밝히지 못하였으나 다른 코드로 대체하여 구동 시킴
728x90
'[Problem&Solve]' 카테고리의 다른 글
404에러(2) (0) | 2022.02.18 |
---|---|
Tomcat Removing obsolete files from server 에러 (0) | 2022.02.17 |
[게시판]아이디 중복확인 무반응에러 (0) | 2022.02.14 |
500에러(NullPointerException) (0) | 2022.02.13 |
[게시판 로그인 구현] 로그인시 무반응 에러 (0) | 2022.02.12 |
댓글