SpringMVC入門學習---使用註解開發

Singgle發表於2019-05-10

在這裡我要講的是如何使用註解進行開發,與上一個專案相比,我們要改的檔案如下:

HelloController.java
springmvc-servlet.xml
複製程式碼

HelloController.java

package com.xgc.controller;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;

@Controller
public class HelloController{

	@RequestMapping("/hello")
	public ModelAndView hello(HttpServletRequest req, HttpServletResponse res) {
		ModelAndView mv=new ModelAndView();
		mv.addObject("msg","hello annotation");
		mv.setViewName("hello");
		return mv;
	}
}
複製程式碼

從上面的程式碼,我們可以看到我們的HelloController不用繼承Controller類了。我們使用了註解。為了要使註解有效,我們需要在springmvc.xml配置一下相關的資訊。

springmvc.xml

<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"
	xmlns:mvc="http://www.springframework.org/schema/mvc"
	xmlns:tx="http://www.springframework.org/schema/tx"
	xsi:schemaLocation="http://www.springframework.org/schema/beans 
	http://www.springframework.org/schema/beans/spring-beans.xsd 
	http://www.springframework.org/schema/tool 
	http://www.springframework.org/schema/tool/spring-tool.xsd 
	http://www.springframework.org/schema/context 
	http://www.springframework.org/schema/context/spring-context.xsd
	http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">

	<bean id="viewResolver"
		class="org.springframework.web.servlet.view.InternalResourceViewResolver">
		<property name="prefix" value="/WEB-INF/jsp/" />
		<property name="suffix" value=".jsp" />
	</bean>
	<mvc:annotation-driven />
	<context:component-scan base-package="com.xgc.controller" />
</beans>
複製程式碼

我們分析一下上面的配置和我們上一個的專案,有什麼不同。

可以看到我們的handler mapping和handler adapter都不用配置了。取而代之的是我們用了下面的兩段程式碼

<mvc:annotation-driven />
<context:component-scan base-package="com.xgc.controller" />
複製程式碼

第一句程式碼的意思是,自動註冊DefaultAnnotationHandlerMappingAnnotationMethodHandlerAdapter 兩個bean。即自動幫我們配置了handler mapping和handler。這就是為什麼我們可以不用配置這兩個bean的原因了。

第二句程式碼的意思是,掃描指定包下面的controller,所有使用了註解的類都要放在這個類下面,不然就會報錯。

注:要注意的是,在這個springmvc.xml中的名稱空間與上一個專案的名稱空間有一點不同,因為在原先的名稱空間中,<mvc:annotation-driven />會報錯,所以我就改了一下名稱空間。

測試

在配置好了之後,我們當然要看看能不能成功執行啦

輸入 http://localhost:8080/02springweb_annotation/hello.do, 我們就可以看到下面的效果了

SpringMVC入門學習---使用註解開發

相關文章