[Stripes-users] Inject bean in overriden locale picker

2013-06-13 Thread Rob GB
Hi all, I created my own LocalePicker implementation, I just created a new class and mapped it in web.xml: !-- Override the default localepicker class --init-param param-nameLocalePicker.Class/param-name param-valuecom.my.own.LocalePicker/param-value

[Stripes-users] Stripes Sample in WAS Liberty

2013-06-13 Thread VANKEISBELCK Remi
Hi folks, A colleague found this : https://www.ibmdw.net/wasdev/repo/repo_samples_osi_stripesv157integration/ Not sure integration is appropriate for deploying a war, and really not sure why one would need an app-server specific sample for that, but it's always cool to see Stripes mentioned

Re: [Stripes-users] Inject bean in overriden locale picker

2013-06-13 Thread VANKEISBELCK Remi
Hi Rob, You can also use the Spring APIs directly and skip the annotation and SpringHelper... I mean, calling beanFactory.getBean(myBean) doesn't hurt if you do it only there. You can access the servletContext at init time :