GitのTomcatやwebapp-runnerがIDEAでビルドできる小さなMVCプロジェクトがあります。それは完璧に働いていましたが、突然プロジェクトをビルドするときにlocalhost:8080で開き、jsとcssファイルがうまくいかないという問題を見ました。私はデバッガ(F12)でそれを開き、すべてのファイルに私のjspページのHTMLコードがあることに気づいた。コメントに追加情報が必要な場合は、送信します。あなたはこの写真でそれを見ることができるSpring MVCプロジェクトのビルドが正しくありません
:
追加:
サーブレットのcontext.xml:
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd">
<!-- DispatcherServlet Context: defines this servlet's request-processing
infrastructure -->
<!-- Enables the Spring MVC @Controller programming model -->
<annotation-driven />
<!-- Handles HTTP GET requests for /resources/** by efficiently serving
up static resources in the ${webappRoot}/resources directory -->
<resources mapping="/resources/**" location="/resources/" />
<resources mapping="/resources/**" location="/resources/" />
<context:component-scan base-package="com.ya.pokupay" />
<!-- Resolves views selected for rendering by @Controllers to .jsp resources
in the /WEB-INF/views directory -->
<beans:bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/WEB-INF/views/" />
<beans:property name="suffix" value=".jsp" />
</beans:bean>
<!--<!–Local database–>-->
<!--<beans:bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"-->
<!--destroy-method="close">-->
<!--<beans:property name="driverClassName" value="com.mysql.jdbc.Driver" />-->
<!--<beans:property name="url" value="jdbc:mysql://localhost:3306/shopDB" />-->
<!--<beans:property name="username" value="*****" />-->
<!--<beans:property name="password" value="*****" />-->
<!--</beans:bean>-->
<!--Remote database-->
<beans:bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<beans:property name="driverClassName" value="com.mysql.jdbc.Driver" />
<beans:property name="url" value="jdbc:mysql://db4free.net:3306/yapokupay" />
<beans:property name="username" value="******" />
<beans:property name="password" value="******" />
</beans:bean>
<!-- Hibernate 4 SessionFactory Bean definition -->
<beans:bean id="hibernate4AnnotatedSessionFactory"
class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<beans:property name="dataSource" ref="dataSource" />
<beans:property name="annotatedClasses">
<beans:list>
<beans:value>com.ya.pokupay.model.Advert</beans:value>
</beans:list>
</beans:property>
<beans:property name="hibernateProperties">
<beans:props>
<beans:prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect
</beans:prop>
<beans:prop key="hibernate.show_sql">true</beans:prop>
</beans:props>
</beans:property>
</beans:bean>
<beans:bean id="advertDAO" class="com.ya.pokupay.dao.AdvertDAOImpl">
<beans:property name="sessionFactory" ref="hibernate4AnnotatedSessionFactory" />
</beans:bean>
<beans:bean id="advertService" class="com.ya.pokupay.service.AdvertServiceImpl">
<beans:property name="advertDAO" ref="advertDAO"/>
</beans:bean>
<context:component-scan base-package="com.ya.pokupay" />
<tx:annotation-driven transaction-manager="transactionManager"/>
<beans:bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">
<beans:property name="sessionFactory" ref="hibernate4AnnotatedSessionFactory" />
</beans:bean>
</beans:beans>
ここ
は私のプロジェクトの構造であり、
script.js:
$(document).ready(function() {
$(".dropdown-menu a").on("click", function() {
var url = $(this).attr("href");
if (url == '#') {
history.replaceState('', '', '/');
} else {
history.pushState('', '', url);
}
})
});
script.jsにHTMLコードブロックが含まれているのはなぜですか?また、 'servlet-context.xml'を投稿してください。 – Lucky
@Lucky、私はjsに書きませんでした。私は問題のjsファイルを追加しました。 – Dmitry
建物の間はすべて置き換えられます。何ができますか?私は何も変えなかったし、昨日それはうまくいった。 – Dmitry