Study/Spring framework

tab lib가 잘 안먹을 때,

nobang 2008. 9. 8. 15:52
728x90
보통 web.xml 에서
  <jsp-config>
      <taglib>
          <taglib-uri>/spring</taglib-uri>
          <taglib-location>/WEB-INF/tld/spring.tld</taglib-location>
      </taglib>
  </jsp-config>
로 선언 한 뒤에

jsp 파일에서
<%@ taglib prefix="spring" uri="/spring" %>
식으로 사용하게 되는데 가끔. 아주 가`~끔 안먹는 경우가 있다.

그럴 때,
<%@ taglib prefix="spring" uri="/spring" %> 대신

<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %> 으로
직접 경로를 써줘도 무방하다.

728x90