第一个SpringMVC程序---Hello World

第一个SpringMVC程序---Hello World_第1张图片

第一个SpringMVC程序---Hello World_第2张图片

 

第一个SpringMVC程序---Hello World_第3张图片

 

SpringMVC相关步骤操作

第一个SpringMVC程序---Hello World_第4张图片

第一个SpringMVC程序---Hello World_第5张图片第一个SpringMVC程序---Hello World_第6张图片

具体文件

第一个SpringMVC程序---Hello World_第7张图片

第一个SpringMVC程序---Hello World_第8张图片

第一个SpringMVC程序---Hello World_第9张图片

相关代码:

application.xml

xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"

xmlns:context="http://www.springframework.org/schema/context"

 

xsi:schemaLocation="

http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans.xsd

http://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context.xsd

http://www.springframework.org/schema/jeehttp://www.springframework.org/schema/jee/spring-jee.xsd">

<bean name="/hello" class="springMVC.helloController">bean>

beans>

 

 

 

 

 

第一个SpringMVC程序---Hello World_第10张图片

 

 

 

web.xml

xml version="1.0" encoding="UTF-8"?>

<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaeehttp://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"

version="4.0">

<servlet>

<servlet-name>springservlet-name>

<servlet-class>org.springframework.web.servlet.DispatcherServletservlet-class>

<init-param>

<param-name>contextConfigLocationparam-name>

<param-value>classpath:application.xmlparam-value>

init-param>

<load-on-startup>1load-on-startup>

servlet>

<servlet-mapping>

<servlet-name>springservlet-name>

<url-pattern>/url-pattern>

servlet-mapping>

web-app>

 

 

 

helloController的编写

package springMVC;

 

import org.springframework.web.servlet.ModelAndView;

import org.springframework.web.servlet.mvc.Controller;

 

import javax.servlet.http.HttpServletRequest;

import javax.servlet.http.HttpServletResponse;

 

public class helloController implements Controller {

@Override

public ModelAndView handleRequest(HttpServletRequest req, HttpServletResponse resp) throws Exception {

System.out.println("hello world");

return null;

}

}

 

结果为:

第一个SpringMVC程序---Hello World_第11张图片

你可能感兴趣的:(第一个SpringMVC程序---Hello World)