Thank you for reply
My skinBean looks like :
@Name("skinBean")
| @Scope(ScopeType.SESSION)
| public class SkinBean {
|
| @Logger private Log log;
|
| @In("#{theme.skin}")
| private String skin;
|
| public String getSkin() {
| log.debug("Getting skin : "+skin);
| return skin;
| }
| public void setSkin(String skin) {
| }
| }
Now it's works. I knew that I can do like that, but I didn't wanted to produce
another bean which holds only the state of the current skin, now it only retrieves the
skin from theme component.
Why I can't just use #{theme.skin} in web.xml file ?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079144#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...