Springmvc的简单入门案例

Controller类代码

package com.tedu.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
/*作用1:标识当前类属于Controller层
 * 作用2:标识当前类的对象由spring对象创建
 * @RequsetMapping注解在当前方法上声明的路径是不能重复的
 * 如果controller类上没有通过@RequestMapping声明访问路径,那么在所有的Controller类中都不能重复
 * */
@Controller
public class HelloController {
	@RequestMapping("/hello")
	public String textHello() {
		System.out.println("hello springmvc");
		//转向home.jsp文件
		return "home";
	}
	
	
}

web.xml配置文件

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

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

    xmlns="http://java.sun.com/xml/ns/javaee"

    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"

    id="WebApp_ID" version="2.5">

   

    <!-- 配置springmvc前端控制器, 将所有请求交给springmvc来处理 -->

    <servlet>

        <servlet-name>springmvc</servlet-name>

        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>

       

        <!-- 配置springmvc核心配置文件的位置,默认Springmvc的配置文件是在WEB-INF目录下,默认的名字为springmvc-servlet.xml,如果要放在其他目录,则需要指定如下配置:

        -->

        <init-param>

            <param-name>contextConfigLocation</param-name>

            <param-value>classpath:springmvc-config.xml</param-value>

        </init-param>     

    </servlet>

    <!-- 其中的斜杠(/)表示拦截所有请求(除JSP以外), 所有请求都要经过springmvc前端控制器 -->

    <servlet-mapping>

        <servlet-name>springmvc</servlet-name>

        <url-pattern>/</url-pattern>

    </servlet-mapping>

 

</web-app>

springmvc-config.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:mvc="http://www.springframework.org/schema/mvc"

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

    xsi:schemaLocation="http://www.springframework.org/schema/mvc

                       http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd

                       http://www.springframework.org/schema/beans

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

                       http://www.springframework.org/schema/context

                        http://www.springframework.org/schema/context/spring-context-4.0.xsd">

   

    <!-- 1.配置前端控制器放行静态资源(html/css/js等,否则静态资源将无法访问) -->

    <mvc:default-servlet-handler/>

   

    <!-- 2.配置注解驱动,用于识别注解(比如@Controller) -->

    <mvc:annotation-driven></mvc:annotation-driven>

   

    <!-- 3.配置需要扫描的包:spring自动去扫描 base-package 下的类,

        如果扫描到的类上有 @Controller、@Service、@Component等注解,

        将会自动将类注册为bean

     -->

    <context:component-scan base-package="com.tedu.controller">

    </context:component-scan>

   

    <!-- 4.配置内部资源视图解析器

        prefix:配置路径前缀

        suffix:配置文件后缀

     -->

    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">

        <property name="prefix" value="/WEB-INF/pages/"/>

        <property name="suffix" value=".jsp"/>

    </bean>

   

   

</beans>

home.jsp文件

<%@ page pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
	<meta charset="UTF-8"/>
	<title></title>
</head>
<body>
<h1>day16 springmvc</h1>
</body>
</html>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值