Spring MVC中一般类使用service

该文章转自:http://www.2cto.com/kf/201409/337869.html

在Spring MVC中,Controller中使用service只需使用注解@Resource就行,但是一般类(即不使用@Controller注解的类)要用到service时,可用如下方法:

1、SpringContextUtil

?
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package com.test.framework.utils;
 
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.NoSuchBeanDefinitionException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
 
public class SpringContextUtil implements ApplicationContextAware {
 
     private static ApplicationContext applicationContext; // Spring应用上下文环境
 
     // 下面的这个方法上加了@Override注解,原因是继承ApplicationContextAware接口是必须实现的方法
     @Override
     public void setApplicationContext(ApplicationContext applicationContext)
             throws BeansException {
         SpringContextUtil.applicationContext = applicationContext;
     }
 
     public static ApplicationContext getApplicationContext() {
         return applicationContext;
     }
 
     public static Object getBean(String name) throws BeansException {
         return applicationContext.getBean(name);
     }
 
     public static Object getBean(String name, Class requiredType)
             throws BeansException {
         return applicationContext.getBean(name, requiredType);
     }
 
     public static boolean containsBean(String name) {
         return applicationContext.containsBean(name);
     }
 
     public static boolean isSingleton(String name) throws NoSuchBeanDefinitionException {
         return applicationContext.isSingleton(name);
     }
 
     public static Class getType(String name)    throws NoSuchBeanDefinitionException {
         return applicationContext.getType(name);
     }
 
     public static String[] getAliases(String name) throws NoSuchBeanDefinitionException {
         return applicationContext.getAliases(name);
     }
}

2、Spring的配置文件application.xml中进行如下配置

?
1
<bean id= "SpringContextUtil" class = "com.test.framework.utils.SpringContextUtil" scope= "singleton" ></bean>


3、使用

?
1
2
DictService dictService = (DictService) SpringContextUtil.getBean( "dictService" );
List<dict> dict = (List<dict>) dictService.findByHQL(hql);</dict></dict>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值