Notice
Recent Posts
Recent Comments
Link
목록에러 (12)
개발 일기
[Spring] org.springframework.web.context.ContextLoaderListener 에러 해결 방법
스프링에서 톰캣 구동시에 org.springframework.web.context.ContextLoaderListener 위와 같은 에러 발생시 해결방법입니다. 프로젝트 우클릭 -> properties -> Deployment Assembly 선택 -> Add 선택 -> Java Build Path Entries -> Maven Dependencies 선택 -> Apply 선택 위 단계를 마친 후에 톰캣 재가동을 하면 된다.
웹개발/Spring
2020. 3. 23. 14:04
[Mybatis] The content of elements must consist of well-formed character data or markup.
The content of elements must consist of well-formed character data or markup. MyBbatis 쿼리문에서 부등호() 사용시 발생하는 에러입니다. 쿼리문에서 처럼 사용하기 때문에 부등호를 사용하면 에러가 납니다. 때문에 해당 부등호가 쿼리에 사용 될 수 있도록 내용 ]]> 으로 감싸줍니다 아래는 예시입니다. 20 ]]>
웹개발/Mybatis
2020. 2. 18. 15:04
[Mysql] [HY000][1191] Can't find FULLTEXT index matching the column list
[HY000][1191] Can't find FULLTEXT index matching the column list 에러 발생 이유 FULLTEXT INDEX 를 사용할때 해당 컬럼이 인덱스로 잡혀 있지 않을때 나는 에러.
웹개발/Mysql
2020. 2. 13. 13:38