Web路径 带/ 不带/

最近在学springmvc,发现在路径的带/和不带/上有很多的问题,

所以今天讲一下前端文件,路径带/和不带/的问题

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
  <head>
    <title>主题title>
  head>
  <body>
       
	<a  href="http://localhost:8080/01_primary_war_exploded/in.do">跳转页面a>
	
	
	<a  href="/01_primary_war_exploded/in.do">跳转页面a>
	
	
	<a  href="in.do">跳转页面a>
	
	  body>
html>

后台spring.xml配置时 如果路径为/in.do怎么在浏览器中找到页面


<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
       ">
     
    <bean id="/in.do" class="com.bjpowernode.handlers.MyController"/>
beans>

即为如下路径
在这里插入图片描述

你可能感兴趣的:(servlet,jsp)