js加载

来源:4-10 店铺注册之js实现

weibo_阿咪塔乜都冇_0

2019-12-30

js不能正确加载

图片描述

<?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.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context.xsd
    http://www.springframework.org/schema/mvc
    http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">
	<!-- 配置SpringMVC -->
	<!-- 1.开启SpringMVC注解模式 -->
	<mvc:annotation-driven />

	<!-- 2.静态资源默认servlet配置 (1)加入对静态资源的处理:js,gif,png (2)允许使用"/"做整体映射 -->
	<mvc:resources mapping="/resources/**" location="/resources/" />
	<mvc:default-servlet-handler />


	<!-- 3.定义视图解析器 -->
	<bean id="viewResolver"
		class="org.springframework.web.servlet.view.InternalResourceViewResolver">
		<property name="prefix" value="/WEB-INF/html/"></property>
		<property name="suffix" value=".html"></property>
	</bean>
	
	<!-- 文件上传解析器 -->
	<bean id="multipartResolver"
		class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
		<property name="defaultEncoding" value="utf-8"></property>
		<!-- 1024 * 1024 * 20 = 20M -->
		<property name="maxUploadSize" value="20971520"></property>
		<property name="maxInMemorySize" value="20971520"></property>
	</bean>

	<!-- 4.扫描web相关的bean -->
	<context:component-scan base-package="com.imooc.o2o.web" />
</beans>
写回答

2回答

纯情的慕哥

2019-12-30

静态资源找不到,如果你按照视频放的,那就很可能是没部署上。一切重启一般能解决问题

如果帮到你,望采纳

1
2
qq_慕码人1395895
回复
weibo_阿咪塔乜都冇_0
我js没加载是因为spring-web.xml文件中写成了;改过来就好了
2020-03-06
共2条回复

翔仔

2019-12-31

同学好,主要看看shopoperation.js放对地方了没,可以提供相关的文件结构截图,此外,如果还是不行,可以对比一下pom的jar包

0
4
翔仔
回复
qq_岁月颠沛流离失所_0
同学好,这是框架解析时候语法规定的呢 location代表的是解析的路径,而resources代表要解析的支援,resources支持* https://www.cnblogs.com/caogen1991/p/7921748.html
2020-01-27
共4条回复

Java双版本(SSM到SpringBoot)校园商铺全栈开发

SSM商铺V1.0,解决毕设痛点;SpringBoot商铺V2.0,满足工作刚需

5113 学习 · 8144 问题

查看课程