当前位置:   article > 正文

SpringMVC的第一个程序_springmvc 前台提交后进入后台的第一个程序

springmvc 前台提交后进入后台的第一个程序


1、我们按照之前的套路来完成SpringMVC的学习,首先环境的思路就是越简单越好。
2、我们首先创建一个空白的项目来作为主工程
3、我们在主工程里面创建空白模板来完成我们的第一个项目。(添加Farmework support)
4、导入我们所需要的Maven依赖!

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.13</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>5.3.0</version>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>2.5</version>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
            <version>1.2</version>
        </dependency>
        <dependency>
            <groupId>javax.servlet.jsp</groupId>
            <artifactId>jsp-api</artifactId>
            <version>2.1</version>
        </dependency>
    </dependencies>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27

5、导入依赖之后我们就要完成我们程序的入口,也就是DispatcherServlet。(即我们的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/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
         version="4.0">
    <servlet>
        <servlet-name>springmvc</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:springmvc-servlet.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>springmvc</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
</web-app>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

其主要就是一个Servlet的注册,相比之前的Servlet而言就是在servlet标签下多了两个标签,init-param标签是关联一个springmvc的配置文件。而load-on-startup则是设置启动级别为1(即程序开始就加载)。
6、上一步我们关联了一个springmvc的一个配置文件,因此这一步该干什么就清楚明了了,于是我们就要编写springmvc-servlet.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>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

我们按照官方的来(看不懂也没事,先照着做,之后用注释编写程序的话这些是没有必要的)
添加处理映射器

<bean
class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"
/>
  • 1
  • 2
  • 3

添加处理适配器

<bean
class="org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter
"/>
  • 1
  • 2
  • 3

添加视图解析器

<!--视图解析器:DispatcherServlet给他的ModelAndView-->
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver"
id="InternalResourceViewResolver">
<!--前缀-->
<property name="prefix" value="/WEB-INF/jsp/"/>
<!--后缀-->
<property name="suffix" value=".jsp"/>
</bean>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

这里钱前缀和后缀的值是为了拼接地址的,这么我们会返回一个hello,即我们要求请求一个/WEB-INF/jsp/hello.jsp页面
7、编写我们的业务操作Controller

public class Controller implements org.springframework.web.servlet.mvc.Controller {
    @Override
    public ModelAndView handleRequest(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws Exception {
        ModelAndView mv = new ModelAndView();
        mv.addObject("msg","Welcome to Spring");
        mv.setViewName("hello");
        return mv;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

8、将这个类交给springIOC容器、注册bean

    <bean id="/hello" class="com.yyp.controller.Controller"/>
  • 1

9、添加Tomcat
10、测试(这里就不掩饰了)

可能会遇到的问题

404

output的WEB-INF下面没有lib包
解决:在项目结构中进行一下操作。

500

Caused by: org.xml.sax.SAXParseException; lineNumber: 1; columnNumber: 1; 前言中不允许有内容
我是因为在写web.xml的时候,没有关联springmvc的配置文件的时候没有写文件,因此文件名字我给忘了写了,所以导致我的代码出现500的错误异常。	
解决方案:在servlet里面补充完成关联配置文件的名称。
  • 1
  • 2
  • 3
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/467815
推荐阅读
相关标签
  

闽ICP备14008679号