Error 오답노트

<스프링 에러> | Bean property 'sqlSessionTemplate' is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter?

DEV-HJ 2022. 5. 18. 12:56
반응형

 

root-context.xml에 새로운 dao를 추가하는 에러가난다 

 

에러를 검색해보니 

Bean 속성 'sqlSession'Template'은(는) 쓰기 가능하지 않거나 잘못된 설정자 메서드가 있습니다.

세터의 매개 변수 유형이 게터의 반환 유형과 일치합니까?

라고 뜸.

dao파일의 setter, getter를 안해줘서라고 한다

 

dao파일 안에 extends SqlSessionDaoSupport 를 안해줘서 였음

추가해주고 다시 root-context.xml 확인해보니 에러가 사라졌다.

반응형