| Author |
use EJB in <html:form>
|
Vb Bajpai
Greenhorn
Joined: Feb 13, 2009
Posts: 1
|
|
|
can I directly use EJB in <html:form>? right now I am using POJO bean and then mapping those values into EJB from within Action class.
|
 |
Alok Kushwah
Ranch Hand
Joined: Jul 10, 2007
Posts: 31
|
|
|
Both EJB and Java bean contains "Bean" in their name, however they are not replaceable by each other. EJB technology is to develop distributed server side component/service, on other hand Java Bean is a simple class with accessor methods for its attributes (setter/getter) (As you said POJO). EJBs are not POJO. Read about <html:form> tag. tag should work with Java Bean (POJO).
|
 |
 |
|
|
subject: use EJB in <html:form>
|
|
|