0

javascript および css ファイルを maven の spring webapp プロジェクトに追加する際に問題が発生しています。

私はウェブとここを検索していますが、すべてを適切な場所に配置するのに問題があります。

私がやりたいことは、ルート コンテキストに index.html ページを作成し、そこからシステム内のローカルの JavaScript ファイルを参照することです。

.war レイアウト

war/
  index.html
  js/
    javascript.js
  css/
    default.css
  WEB-INF/
    classes/
      *.classes
    lib/
      *.jar
    springapp-servlet.xml
    web.xml

index.html ファイル

<html>
<head>
<link href="css/jquery.mobile-1.3.0.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="js/jquery.mobile-1.3.0.js"></script>
</head>
<body>
  <div data-role="header">
    <h1>Page Title</h1>
  </div>
</body>
</html>

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    id="WebApp_ID" version="2.5">
    <display-name>springTest</display-name>

    <servlet>
        <servlet-name>springapp</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>springapp</servlet-name>
        <url-pattern>*.do</url-pattern>
    </servlet-mapping>
</web-app>

springapp-servlet.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
     http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
     http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">

    <!-- View resolvers -->

    <bean id="viewResolver"
        class="org.springframework.web.servlet.view.velocity.VelocityViewResolver">
        <property name="cache" value="false" />
        <property name="prefix" value="" />
        <property name="suffix" value=".vm" />
    </bean>

    <bean id="velocityConfig"
        class="org.springframework.web.servlet.view.velocity.VelocityConfigurer">
    </bean>

<!-- controllers and java service beans -->
.....

<mvc:resources mapping="/**" location="/" />

</beans>

これで js と css ディレクトリを html ファイルでリンクできるようになると思いましたが、プレーン テキストしか表示されず、クエリ モバイル ビューが表示されません。

Spring と Maven を使用して Jboss AS 7 で実行します。

よろしくヘンリック

4

1 に答える 1

0

Hmm, gotten it working, somehow, with the structure I had....

于 2013-03-20T17:51:35.873 に答える