Javascript 和 css 文件在使用 @PathVariable 后在我​​的 jsp 页面上出现 404 错误

Javascript and css files getting 404 error on my jsp page after using @PathVariable

出于某种原因,当我在 spring 控制器中更改 jsp 的映射以使用 javascript 或 [=30] 的路径变量 none =] 文件将加载。我在网上找不到任何其他发生这种情况的例子。我猜这是我的 web.xml 中的一些映射问题,但我真的不知道。

这是我的控制器代码..

@RequestMapping(value = "common/taskSummary/{taskInstanceId}.do",  method=RequestMethod.GET)
public ModelAndView taskSummary(
        @PathVariable("taskInstanceId") int taskInstanceId) {
    // Get user from Spring security
    User user = (User) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
    ModelAndView modelAndView = new ModelAndView("taskSummary");
    modelAndView.addObject("username", user.getUsername());
    return modelAndView;
}

这是我的 web.xml...

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee"  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  xsi:schemaLocation="http://java.sun.com/xml/ns/javaee          http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">

<filter>
    <filter-name>springSecurityFilterChain</filter-name>
    <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>

<filter-mapping>
    <filter-name>springSecurityFilterChain</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping> 

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/applicationContext.xml
        /WEB-INF/spring-security.xml  
    </param-value>
</context-param>
<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<listener>
    <listener-class>org.springframework.security.web.session.HttpSessionEventPublisher</listener-class>
</listener>           
<resource-ref>
    <description>ArcFlashMap DB Connection</description>
    <res-ref-name>jdbc/AFM_DB</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
</resource-ref>    
<servlet>
    <servlet-name>LoadResourcesServlet</servlet-name>
    <servlet-class>ie.premiumpower.services.reports.common.LoadResourcesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
</servlet>

<servlet>
    <servlet-name>dispatcher</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <load-on-startup>2</load-on-startup>
</servlet>

<servlet-mapping>
    <servlet-name>dispatcher</servlet-name>
    <url-pattern>*.do</url-pattern>
</servlet-mapping>
<servlet-mapping>
    <servlet-name>dispatcher</servlet-name>
    <url-pattern>*.json</url-pattern>
</servlet-mapping>
<session-config>
    <session-timeout>
        30
    </session-timeout>
</session-config>

这是我在 firebugs 控制台上遇到的错误...

想通了。

我一直在使用 href="../css/style.css" 映射我的 css 和 js 文件 但这需要更改为 href="../../css/style.css"。添加额外的“../”。