Spring

weblogic 사용시 Spring Form Tge 에러

닉넥임 2013. 11. 18. 10:45
반응형

weblogic 에서 스프링 폼 태그 사용시 톰캣에서는 문제가 없던게 웹로직으로 오면서 에러가 발생한다 어떻게?? 아래와같이....


이렇게 에러가 뜬다... 

이를 해결하기 위해서는

: Spring_webmvc_2.5.6.jar 라이브러리의 spring_form.tld 를 프로젝트에 추가한후 web.xml 파일에다가 tld 파일의 경로를 표기하면 끝!


spring-form.tld


web.xml 에다가 아래의 내용 추가.

1
2
3
4
5
6
    <jsp-config>
        <taglib>
            <taglib-uri>http://www.springframework.org/tags/form</taglib-uri>
            <taglib-location>/WEB-INF/tlds/spring-form.tld</taglib-location>
        </taglib>
    </jsp-config>

 

반응형

'Spring' 카테고리의 다른 글

Spring Redirect  (0) 2013.11.13
Spring Ajax를 사용.  (0) 2013.10.19
jQuery 사용방법  (0) 2013.10.18
Controller redirect data 전송  (0) 2013.10.16
Spring Mybatis를 이용한 우편(post)검색  (0) 2013.10.15