js css 等文件请求404,提示请求路径不对

来源:7-6 部门列表树型结构界面开发

缘分天空_0003

2018-01-21

//img.mukewang.com/szimg/5a6365110001eb5103530339.jpg

//img.mukewang.com/szimg/5a6365110001d49110100367.jpg

//img.mukewang.com/szimg/5a636511000195d715320507.jpg

就是跟着视频一步步走的,却出现请求路径不对

开发环境:eclipse

部署环境:tomcat8.0

--------------------------------------------------------------------------------

再贴上spring-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:mvc="http://www.springframework.org/schema/mvc"

xmlns:context="http://www.springframework.org/schema/context"

xsi:schemaLocation="http://www.springframework.org/schema/beans 

http://www.springframework.org/schema/beans/spring-beans.xsd

http://www.springframework.org/schema/mvc 

http://www.springframework.org/schema/mvc/spring-mvc.xsd

http://www.springframework.org/schema/context

http://www.springframework.org/schema/context/spring-context.xsd

">

<context:annotation-config></context:annotation-config>

<!-- 开启mvc注解驱动 -->

<mvc:annotation-driven></mvc:annotation-driven>

<!-- 启动包扫描功能 -->

<context:component-scan base-package="com.bao.controller"></context:component-scan>

<context:component-scan base-package="com.bao.service"></context:component-scan>

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

<mvc:resources location="/bootstrap3.3.5/" mapping="/bootstrap3.3.5/**"></mvc:resources>

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

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

<!-- <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping" 

/> -->

<bean class="com.bao.core.SpringExceptionResolve"></bean>

<bean class="org.springframework.web.servlet.view.BeanNameViewResolver" />

<bean id="jsonView"

class="org.springframework.web.servlet.view.json.MappingJackson2JsonView" />

<bean

class="org.springframework.web.servlet.view.InternalResourceViewResolver">

<property name="prefix" value="/WEB-INF/page/" />

<property name="suffix" value=".jsp" />

</bean>

</beans>


backend_common.jsp从您源代码中拿过来的







写回答

1回答

Jimin

2018-01-21

你好,当前的截图不足以定位问题,发一下spring-servlet.xml、backend_common.jsp看一下

0
3
缘分天空_0003
回复
Jimin
明白了,谢谢老师。之前遇到的项目好多都使用全路径如下: <% String path = request.getContextPath(); System.out.println(path); int port = request.getServerPort(); String basePath = null; if (port == 80) { basePath = request.getScheme() + "://" + request.getServerName() + path; } else { basePath = request.getScheme() + "://" + request.getServerName() + ":" + port + path; } System.out.println(basePath); pageContext.setAttribute("basePath", basePath); %> 刚才的问题也曾使用这个方式路径,但也编译后路径也是不对的
2018-01-21
共3条回复

Java开发企业级权限管理系统

源于企业真实Java项目,涉及大量高级技巧,覆盖权限管理开发技术

2261 学习 · 1347 问题

查看课程