在SpringMVC架構中,我們經常要使用@Autowired注解注入Service或者Mapper接口,我們也知道,在controller層中注入service接口,在service層中注入其它的service接口或者mapper接口都是可以的,但是如果我們要在我們自己封裝的Utils工具類中或者非controller普通類中使用@Autowired注解注入Service或者Mapper接口,直接注入是不可能的,因為Utils使用了靜态的方法,我們是無法直接使用非靜态接口的,當我們遇到這樣的問題,我們就要想辦法解決了。
@Autowired注解的方法:
/**
*增加@Component注解
*/
@Component
public class TestUtils {
@Autowired
private ItemService itemService;
@Autowired
private ItemMapper itemMapper;
/**
*
*注意這個為 public 不然沒有權限
*/
public static TestUtils testUtils;
/**
*
*
*關于@PostConstruct:被@PostConstruct修飾的方法會在伺服器 加載Servlet的時候運作,并且隻會被伺服器調用一次,類似于Serclet的inti()方法。被@PostConstruct修飾的方法會在構造函數之後,init()方法之前運作。
*/
@PostConstruct
public void init() {
testUtils = this;
}
}
//utils工具類中使用service和mapper接口的方法例子,用’testUtils.xxx.方法’ 就可以了
public static void test(Item record){
testUtils.itemMapper.insert(record);
testUtils.itemService.queryAll();
}
我們在init方法中使用以下注解就可以了,時間上這個init()的方法是可以自己随便定義的,注意:inti()方法裡面不用寫任何東西,跟我這樣的就絕對ok了,不用看網上其他人瞎掰!
來源:http://www.tpyyes.com/a/javaweb/2016/1124/30.html
如果以上不能解決,隻能直接用 dao層:
ApplicationContext context = new ClassPathXmlApplicationContext(‘classpath:spring/applicationContext-*.xml’);
FcglEsHouseMapper sfMapper = context.getBean(FcglEsHouseMapper.class);
然後直接調mybatis接口,不推薦此種,違背springmvc
非原創,資料來源http://blog.sina.cn/dpool/blog/s/blog_142a81ff10102x2g1.html