HelloWorld版的SpringMVC使用注解驱动的依赖注入

使用注解,可以极大的减少Spring配置文件的书写,方便实用。接下来看一个最简单的注解方式的依赖注入的使用。

首先在spring-servlet.xml里启用注解:

[html]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. <mvc:annotation-driven />  

启用包扫描功能,以便spring将使用注解的类注册为spirng的bean:

[html]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. <context:component-scan base-package="com.mvc.rest" />  

注解各类的功能

接口类:

[java]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. package com.mvc.rest.service;  
  2.   
  3. public interface ITestService {  
  4.      public String testMethod();  
  5. }  
实现类:

[java]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. package com.mvc.rest.service;  
  2.   
  3. import org.springframework.stereotype.Service;  
  4.   
  5. @Service  
  6. public class TestService implements ITestService{  
  7.     @Override  
  8.     public String testMethod() {  
  9.         return "Hello World!";  
  10.     }  
  11. }  

用@Resource注解激活注解:

[java]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. package com.mvc.rest.controller;  
  2.   
  3. import javax.annotation.Resource;  
  4. import javax.servlet.http.HttpServletRequest;  
  5. import javax.servlet.http.HttpServletResponse;  
  6.   
  7. import org.springframework.stereotype.Controller;  
  8. import org.springframework.ui.ModelMap;  
  9. import org.springframework.web.bind.annotation.PathVariable;  
  10. import org.springframework.web.bind.annotation.RequestMapping;  
  11. import org.springframework.web.bind.annotation.RequestMethod;  
  12. import org.springframework.web.servlet.ModelAndView;  
  13.   
  14. import com.mvc.rest.service.ITestService;  
  15.   
  16. @Controller    
  17. public class RestConstroller {    
  18.     @Resource  
  19.     private ITestService testService;  
  20.     public RestConstroller() {}    
  21.     @RequestMapping(value = "/welcome", method = RequestMethod.GET)    
  22.     public String welcome() {    
  23.         String hello=testService.testMethod();  
  24.         System.out.println("hello:======"+hello);  
  25.         return "/welcome";    
  26.     }    
  27. }  
如此便实现了注解方式的依赖注入。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值