Spring MVC アプリケーションを開発しており、スクリプトを呼び出していくつかの css ファイルをリンクする必要があるログイン ページ (login.jsp) があります。問題は、アプリケーションがスクリプトを実行しないことです。
これが私のファイルです。
Web.xml
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>*.css</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>/ressources/js/*</url-pattern>
</servlet-mapping>
私のmvcディスパッチャースプリングファイル:
<mvc:resources mapping="/resources/**" location="/ressources/" />
<mvc:resources mapping="/scripts/**" location="/ressources/js/" />
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter" />
<bean
class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping">
</bean>
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix">
<value>/WEB-INF/pages/</value>
</property>
<property name="suffix">
<value>.jsp</value>
</property>
</bean>
</beans>
スクリプト ファイルと css ファイルを呼び出す Login.jsp
<% String init="<c:url value='/resources/js/init.js'>";%>
<% String grid="<c:url value='/resources/css/5grid/init.js?use=mobile,desktop,1000px&mobileUI=1&mobileUI.theme=none&mobileUI.titleBarOverlaid=1&viewport_is1000px=1060'>";%>
<% String query="<c:url value='/resources/js/jquery-1.8.3.min.js'>";%>
<% String drop="<c:url value='/resources/js/jquery.dropotron-1.2.js'>";%>
<link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,900,300italic" rel="stylesheet" />
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="<%=grid%>"></script>
<script src="<%=drop%>"></script>
<script src="<%=init%>"></script>
<noscript>
<link rel="stylesheet" href="<c:url value='/resources/css/5grid/core.css' />"/>
<link rel="stylesheet" href="<c:url value='/resources/css/5grid/core-desktop.css' />"/>
<link rel="stylesheet" href="<c:url value='/resources/css/5grid/core-1200px.css' />"/>
<link rel="stylesheet" href="<c:url value='/resources/css/5grid/core-noscript.css' />"/>
<link rel="stylesheet" href="<c:url value='/resources/css/style.css' />"/>
<link rel="stylesheet" href="<c:url value='/resources/css/style-desktop.css' />"/>
</noscript>
ページを表示するときに、スクリプトや css ファイルがないため、表示されるコンポーネントのみが使用されるスタイルはありません。
誰でも私の問題の解決策を教えてください?? ありがとうございました