can i use javabeans with hibernate ?
- by Dilllllo
Hello i'm using a plugin of hibernate2 in my webproject with jsp ,in my project i have a register page.
Can i use javabeans to send information from a html <form> using hibernate class's ?
with out hibernate i creat class with get and set like that
package com.java2s;
public class Lang {
private String choix;
private String comm;
public String getChoix() {
return choix;
}
public void setChoix(String choix) {
this.choix = choix;
//System.out.println(choix);
}
public String getComm() {
return comm;
}
public void setComm(String comm) {
this.comm = comm;
// System.out.println(comm);
}
}
but i know that hibernate generate a get and set class !
and recive it with that :
<jsp:useBean id='user' class='com.java2s.Lang' type='com.java2s.Lang' scope='session' />
<jsp:setProperty name='user' property='*'/>
any idea how to do that ?