2 Topics

Member Avatar for
Member Avatar for de.ICeman

Can anyone suggest book for beginner In EJB 3.0 Like Head first (there is Head first Ejb but its 2.0). Any suggestions would be appreciated.

Member Avatar for peter_budo
0
186
Member Avatar for daudiam

[CODE]@Local public interface EJBA{ // declares a method 'validate' } @Stateless public class EJBABean implements EJBA{ // implements the method 'validate' } class Model{ @EJB private EJBA ejbA; public void doSomething(){ ejbA.validate(); } } [/CODE] Now, if I do the following from the execute method of a Struts 1.2 action …

0
103

The End.