我是靠谱客的博主 痴情宝贝,最近开发中收集的这篇文章主要介绍spring mvc开发javaweb遇到${pageContext.request.contextPath}不生效的问题,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

我的问题是版本太低导致的

之前的springmvc-servlet.xml

 

修改版本后

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
         version="4.0">
    <display-name>Archetype Created Web Application</display-name>
    <servlet>
        <servlet-name>springmvc</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>/WEB-INF/spring-config/springmvc-servlet.xml</param-value>
        </init-param>
    </servlet>
    <servlet-mapping>
        <servlet-name>springmvc</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
</web-app>


参考:(47条消息) ${pageContext.request.contextPath}不生效的问题_Serendipity486的博客-CSDN博客_${pagecontext.request.contextpath}无效icon-default.png?t=M3K6https://blog.csdn.net/qq_43731172/article/details/117385501

最后

以上就是痴情宝贝为你收集整理的spring mvc开发javaweb遇到${pageContext.request.contextPath}不生效的问题的全部内容,希望文章能够帮你解决spring mvc开发javaweb遇到${pageContext.request.contextPath}不生效的问题所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(38)

评论列表共有 0 条评论

立即
投稿
返回
顶部