26 lines
865 B
Plaintext
26 lines
865 B
Plaintext
|
|
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||
|
|
pageEncoding="ISO-8859-1"%>
|
||
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||
|
|
<title>Welcome</title>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<h2>Welcome to Spring Handler Mapping Example</h2>
|
||
|
|
<h3>Click below link to understand each mentioned Handler Mapping:
|
||
|
|
</h3>
|
||
|
|
<p>
|
||
|
|
1. <a href="/spring-mvc-xml/helloWorld.html">BeanNameUrlHandlerMapping
|
||
|
|
- Mapping by bean name</a> <br>
|
||
|
|
<p>
|
||
|
|
2. <a href="/spring-mvc-xml/welcome.html">SimpleUrlHandlerMapping</a>
|
||
|
|
<br>
|
||
|
|
<p>
|
||
|
|
3. <a href="/spring-mvc-xml/helloGuest.html">ControllerClassNameHandlerMapping
|
||
|
|
- Mapping by controller name</a> <br>
|
||
|
|
<p>
|
||
|
|
<a href="index.jsp">Go to spring handler mappings
|
||
|
|
homepage</a>
|
||
|
|
</body>
|
||
|
|
</html>
|