본문 바로가기
  • Welcome J-Kyu Tstory
[Problem&Solve]

[게시판 ]spring-security.xml 에러

by regularity 2022. 2. 14.
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>

 

(spring-securityl에러)대체 코드.txt
0.00MB

 

 

 

정상 구동 확인

◎결론

▶xml 설정시 버전의 문제였는지 정확한 원인은 밝히지 못하였으나 다른 코드로 대체하여 구동 시킴

728x90

댓글