在Java web中相对路径和绝对路径区别及应用方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Java web中相对路径和绝对路径区别及应用方法相关的知识,希望对你有一定的参考价值。

(续)

三、解决方案

1、针对现象一的解决方案

在/OutSourcingManage/WebContent/WEB-INF/dispatcherServlet-servlet.xml文件中加入如下语句:

<mvc:default-servlet-handler/>

2、针对现象二的解决方案

方法一、在/OutSourcingManage/WebContent/WEB-INF/dispatcherServlet-servlet.xml文件中加入如下语句:

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

方法二、修改static.html,将“<link rel="stylesheet" href="css/bootstrap.min.css"/>”修改为:

<link rel="stylesheet" href="/OutSourcingManage/bootstrap/css/bootstrap.min.css"/>

方法三、将static.html修改static.jsp,并增加如下语句:

<%@ page language="java" contentType="text/html; charset=UTF-8"

pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<head>

<base href="<%=basePath%>">

....

 

以上是关于在Java web中相对路径和绝对路径区别及应用方法的主要内容,如果未能解决你的问题,请参考以下文章

在Java web中相对路径和绝对路径区别及应用方法

相对路径和绝对路径的区别是啥?

绝对路径和相对路径的区别?

java web项目 相对路径怎么写

java web中读取文件,相对路径怎么写

java中如何判断web工程中图片的绝对路径是不是存在