Is it possible to inject objects in struts tiles?
I have this working for Actions, but I can't find a way to do this for tiles. Currently I can only get objects (from the registry) in a tile is via the ApplicationContext.
ex.
Any ideas?Code:ApplicationContext ctx = getApplicationContext(); SessionFactory sf = (SessionFactory) ctx.getBean("sessionFactory");
Thanks


Reply With Quote