在引入jQuery時 報net::ERR_ABORTED 404,各位大神,請幫忙看看

**就是一直加載不到js.css等靜態文件 **(備註:後來我已找到解決方法,我寫在了評論中)

圖片說明

前端代碼

圖片說明

項目目錄結構

圖片說明

springmvc.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:p="http://www.springframework.org/schema/p"
	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-4.0.xsd
    http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd">
    



<!-- 配置controller的掃描包 -->
<context:component-scan base-package="com.ssm.controller"/>


<!-- 配置視圖解析器 -->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
	<property name="prefix" value="/WEB-INF/jsp/"/>
	<property name="suffix" value=".jsp"/>
</bean>


<mvc:annotation-driven/>
<!-- 這句話我加了也沒用 -->
	<!--  <mvc:resources location="/js/*" mapping="/WebContent/js/"/> -->

</beans>

applicationContext.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd">

<!-- 加載配置文件 -->
<context:property-placeholder location="classpath:jdbc.properties"/>




<!-- 配置數據庫連接池 -->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
	<property name="driverClassName" value="${jdbc.driver}"/>
	<property name="url" value="${jdbc.url}"/>
	<property name="username" value="${jdbc.username}"/>
	<property name="password" value="${jdbc.password}"/>
	<property name="maxActive" value="10"/>
	<property name="maxIdle" value="5"/>
</bean>

<!--  配置SqlSessionFactory工廠-->
<bean id="SqlSessionFactoryBean" class="org.mybatis.spring.SqlSessionFactoryBean"> 
	<!--加載數據源  -->
	<property name="dataSource" ref="dataSource"/>
	<!--加載mybatis核心配置文件  -->
	<property name="configLocation" value="classpath:SqlMapConfig.xml"/>
</bean>

<!-- 配置動態代理開發 -->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
	<property name="basePackage" value="com.ssm.mapper"/>
</bean>


<!-- 配置註解事務 -->
	<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
	<property name="dataSource" ref="dataSource"/>

</bean>	


<!-- 配置掃描servies包 -->
<context:component-scan base-package="com.ssm.service"/>



<!--開啓註解事務  -->
<tx:annotation-driven />


</beans>

** 我在網上試了很多種辦法也沒有解決,希望各位大神幫幫忙**

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章