在我的方法中,我在HttpServletRequest上遇到信任边界冲突问题
public ModelAndView display( HttpServletRequest request /*getting issue here*/)
{
Bean bean = request.getAttribute("BeanName");
}
我已经申请了以下支票,但是没有用。
if ((null == bean )&&(!(bean instanceof bean ))&&(!("bean ".equals(bean .class.getName())))){
throw new Excepiton()'
}