jsp
<body>
<a href="user">List</a>
<a href="user/new">Add User</a>
</body>
中href中,user为在本jsp页面所在路径基础上的。比如本jsp路径为http://localhost:8080/mavenwebproject/catt/shen/则href路径为http://localhost:8080/mavenwebproject/catt/shen/user.
注意若为“/user”,则href为http://localhost:8080/user,因为/代表根目录。