Spring MVC에서

아래와 같이 이클립스에서 에러를 출력하였다.

No mapping found for HTTP request with URI [/images/main_bg.png] in DispatcherServlet with name 'appServlet'

or

No mapping found for HTTP request with URI [/favicon.ico] in DispatcherServlet with name 'appServlet'


web.xml에서 url-pattern를 /로 했던게 문제인 것 같다.

<servlet-mapping>

    <servlet-name>appServlet</servlet-name>

    <url-pattern>/</url-pattern>

</servlet-mapping>


*.do url-pattern만 spring에서 처리 하도록 수정 후 에러 출력 없음.

<servlet-mapping>

    <servlet-name>appServlet</servlet-name>

    <url-pattern>*.do</url-pattern>

</servlet-mapping>

'Framework & Platform > Spring' 카테고리의 다른 글

Spring 시작하기  (0) 2012.05.16
Spring MVC - TilesView - tiles 2 연동  (0) 2012.05.11
spring - annotation 2  (0) 2012.05.09
spring - annotation 1  (0) 2012.05.09
Sping MVC - Model  (0) 2012.05.09
Posted by linuxism
,