Good idea.
Using:
ApplicationContext context =
WebApplicationContextUtils.getWebApplicationContext(getServletContext());
someDao = (IDAO<entity>) context.getBean("someDao");Works. However I was hoping to continue using @SpringBean somehow... -Sam
