Ah, I'm glad it's there. I have it working, and it's pretty cool that I can
put properties for my components right there in seam.properties.
But still, Seam is a fragie framework. Right now here is some code I'm working on.
A simple JavaBean, with event scope:
| @Name("requestBean")
| @Scope(ScopeType.SESSION)
| @Intercept(InterceptionType.ALWAYS)
| public class RequestBean implements Serializable {
|
| private String message = null;
|
| public void setMessage(String s) { }
|
| public String getMessage() {
| logger.info("caling getMessage!!!!"); return "Super message: " +
new Date(); }
|
| }
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966301#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...