I have configured the seam redirect filter
| <filter>
| <filter-name>Seam Redirect Filter</filter-name>
| <filter-class>
| org.jboss.seam.servlet.SeamRedirectFilter
| </filter-class>
| </filter>
|
| <filter-mapping>
| <filter-name>Seam Redirect Filter</filter-name>
| <url-pattern>/*</url-pattern>
| </filter-mapping>
This is my java code
| public String createAccount() {
| entityManager.persist(account);
| facesMessages.add("Account \'#{account.name}\' created");
| return "/accounts/list.xhtml";
| }
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4087609#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...