這是一個關於Spring強制向servlet中注入bean的方法
<!
<!
<bean id=
<property name=
</bean>
/**
*然後在servlet裡面得到spring注入的service
* 強制獲得spring注入的service
*/
ApplicationContext applicationContext = WebApplicationContextUtils
TestService testService = (TestService) applicationContext
//企圖直接new或者讓spring按正常方法裝配都會在調用getHibernateTemplate等方法時出現nullpointer錯誤
//done
From:http://tw.wingwit.com/Article/program/Java/ky/201311/28257.html