您的位置:首页 > 编程语言 > Java开发

Spring Mvc第一个web程序

2018-03-21 21:35 429 查看

Spring Mvc第一个web程序

介绍

Spring Mvc
是一种轻量级的web开发框架,有了
Spring Mvc
我们只需要关注在我们的逻辑代码和业务代码上就可以了,比传统的重量级web开发,节省了大量的时间。

比较正规的介绍

Spring Web MVC是一种基于Java的实现了Web MVC设计模式的请求驱动类型的轻量级Web框架,即使用了MVC架构模式的思想,将web层进行职责解耦,基于请求驱动指的就是使用请求-响应模型,框架的目的就是帮助我们简化开发,Spring Web MVC也是要简化我们日常Web开发的。

SpringMVC处理流程



图片来自互联网

入门程序

第一步:创建Maven Web项目

这里就不演示了,不会的可以去看这篇文章:

https://www.cnblogs.com/wen1027/p/6709810.html

第二步:引入Spring MVC包

pom.xml
文件中,添加一下代码,引入Spring mvc依赖包

<!-- Spring -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>3.1.1.RELEASE</version>
<exclusions>
<!-- Exclude Commons Logging in favor of SLF4j -->
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>3.1.1.RELEASE</version>
</dependency>


第三步:配置
web.xml

添加自定义的
Servlet
和控制器中的xml文件:

<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/root-context.xml</param-value>
</context-param>


添加
Spring
中的监听器:

<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>


添加
Spring
中的路由
Servlet
:

<servlet>
<servlet-name>appServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
<servlet-name>appServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>


整个web.xml的内容

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<context-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/spring/root-context.xml</param-value> </context-param>
<listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener>
<servlet> <servlet-name>appServlet</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>appServlet</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping>
</web-app>


第四步:

在第三步,你声明
Spring
中的
servlet
传入的参数有个文件路径,当然你也可以指定其他路径,但是必须确保该路径可以被找到

上面的文件路径:

<param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>


在声明的路径下创建该文件
servlet-context.xml
,将下面模板拷贝下去:

<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"> 
</beans:beans>


先添加资源引用转换声明:

<resources mapping="/resources/**" location="/resources/" />


启动注解驱动:

<annotation-driven />


声明
View
试图的文件及路径

<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/WEB-INF/views/" />
<beans:property name="suffix" value=".jsp" />
</beans:bean>


然后创建
/WEB-INF/views/
路径

声明扫描的注解包:

<context:component-scan base-package="cn.wenhaha.huoju" />


第三步还指定了一个/WEB-INF/spring/root-context.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"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> 
</beans>


第四步:创建控制层

新建一个HomeController类:

public class HomeController {
public String home(Locale locale, Model model) {

Date date = new Date();
DateFormat dateFormat = DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG, locale);

String formattedDate = dateFormat.format(date);

model.addAttribute("serverTime", formattedDate );

return "home";
}
}


然后用
@Controller
注解声明这是一个
Controller
层,然后用
@RequestMapping
注解声明
home
方法为路由。

@Controller
public class HomeController {
@RequestMapping("/hi")
public String home(Locale locale, Model model) {

Date date = new Date();
DateFormat dateFormat = DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG, locale);

String formattedDate = dateFormat.format(date);

model.addAttribute("serverTime", formattedDate );

return "home";
}
}


最后在/WEB-INF/views/路径下,创建
home.jsp
文件

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ page session="false"  contentType="text/html; charset=utf-8"%>
<html>
<head>
<title>Home</title>
</head>
<body>
<h1>
Hello world!
</h1>

<P>  The time on the server is ${serverTime}. </P>
</body>
</html>


启动服务器看效果

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  308