1. Temoporarily suppress beanvalidation with JSF stackoverflow.comi have a User class with a field for the e-mail-address and a password.
|
2. Faces Bean Validation doesn't work on Glassfish 3.1.1 stackoverflow.comI've used bean validation in a request scoped managed bean.
|
3. JSF backing bean reference java.netWhen I use this URL the Login.jsf is being mapped to the FacesServlet because the Login.jsp page is loaded and the content is present; minus any backing bean values of course, which is the problem. And I know the app server can find my classes too because when I use the jsp:useBean tag to load the backing bean manually, things work ... |
4. @PersistenceContext in JSF managed bean--how? java.net |
6. JSF Backing Bean problem java.net |
7. Can't inject RecourceAdapter into JSF Bean java.net |
8. How to inject Entity Manager to JSF Managed Bean java.net |
9. POJO serialization between JSF managed bean and EJB session bean java.netI'd like to avoid the serialization between a JSF managed bean and a EJB session bean (Remote interface). If the JSF bean communicates with the EJB session bean the POJO is being serialized. How do I avoid that? I've heard about a config option called same-VM. Or are there any other solutions? |
10. JTA transactions inside Session beans and JSF java.net |
11. JSF Session Bean persistence java.net |
12. @EJB in JSF-managed beans in GlassFish v2? java.net> My local interface: > > @javax.ejb.Local > public interface Calculator { > Integer add(Integer x, Integer y); > } > > My EJB stateless session bean: > > @javax.ejb.Stateless > public class CalculatorImpl implements Calculator { > public Integer add(Integer x, Integer y) { > return (x == null || y == null) ? null : x+ y; > } ... |