我有一个类,大概作用是权限验证的
每个JSP都有调用
<%
String contextPath = request.getContextPath();
SecurityUtil securityUtil = new SecurityUtil(session);
%>
然后我想使用注入的方式在这个类里面使用dao
@IocBean
public class SecurityUtil{
// @Inject
// protected Dao dao;
但是每次这个dao都是null,是不是因为我的这个类或者下面的方法并不是子模块,因为方法上没有任何的入口函数
请问有没有什么办法能让我的这个类里面的方法能够成功的使用dao