JSP页面显示源码

JSP页面显示源码

错误展示:

JSP页面显示源码_第1张图片

解决方法:

web.xml配置文件 /* 改为 /
修改前:

 
    servlet
    rest
    org.springframework.web.servlet.DispatcherServlet
    
      contextConfigLocation
      classpath:spring/spring-mvc.xml
    
    1
  
  
    rest
    /* 
  

修改后:

  
    servlet
    rest
    org.springframework.web.servlet.DispatcherServlet
    
      contextConfigLocation
      classpath:spring/spring-mvc.xml
    
    1
  
  
    rest
    /
  

作者:feichen2016
来源:CSDN
原文:https://blog.csdn.net/feichen2016/article/details/58588370

你可能感兴趣的:(web.xml)