Programing/오류 해결

java.lang.IllegalArgumentException: taglib definition not consistent with specification version

- 광속거북이 - 2019. 3. 19. 11:51
반응형
SMALL


톰캣 실행시


java.lang.IllegalArgumentException: taglib definition not consistent with specification version


이런 오류가 나타나면


web.xml 파일 안에


<taglib> 가 그냥 코딩되어 있어서 나타나는 오류 입니다.


<jsp-config>
  <taglib>
  ...
  </taglib>
</jsp-config>


이런식으로 <jsp-config> 로 둘러싸주면 오류는 없어집니다.

반응형