I usually see examples of entities that are being persisted on the net using JPA but it only involves one entity. But I can't get myself to understand if there are relations involve.
Now example, I have a many to one mapping between Professor and Department.
@Entity
public class Professor {
@ManyToOne
@JoinColumn(name="DEPT_ID")
private Department department;
}
@Entity
public class Department {
//normal getters and setters
private int id;
private String name;
}
Now, in my JSF page.. I usually add mapping between my form elements
and my managed bean.
During add operation, in a web UI you would usually show a drop down box of departments
when adding new professor.
<h:inputText value="#{myBean.currentProf.name}"/>
.
. /* other mappings here */
.
<h:selectOneMenu value="#{myBean.currentProf.department.name}>
<f:selectItems value="#{myBean.allDepartments}"/>
</h:selectOneMenu>
<h:commandButton value="Add" actionListener="#{myBean.handleSave}" />
Now, my question is: Is it a requirement to get the department first then set it to my current professor property before persisting it? Because in my case, I have already set the department name but not the department Id..
@ManagedBean
public class MyBean{
public Professor currentProf;
public BusinessService service;
public String handleSave(){
Department dept = service.findDepartment(currentProf.getDepartment().getName());
currentProf.setDepartment(dept);
service.createProfessor(currentProf);
}
public List<SelectItem> getAllDepartments(){
return service.getAllDepartments();
}
}
I just show my business service here for clarity.
public class BusinessService {
protected EntityManager em;
public Professor createProfessor(Professor prof) {
em.persist(prof);
return prof;
}
}
Many examples on the net shows rough example such as this:
Department dept = new Department();
dept.setId(1);
dept.setName("Finance");
Prof newProf = new Professor();
newProf.setDepartment(dept);
service.createProfessor(newProf);
But I think that this is not how data is presented and gathered in a web application. Sorry if my question might be vague but please do tell me so that I could elaborate. Sorry also, I am not near at my workspace and I just typed in everything based on my understanding so there could be typo errors. Thanks.