I'm writing a TodoList application using Playframework. I want to update a task but don't know how to update with JPA (I'm just moving from PHP with Zend Framework and don't familiar with Hibernate). I have edit page with URL for example: http://localhost:9000/TaskList/edit?id=2
Its controller:
public static void edit(Long id) {
models.TaskList selectedTask = models.TaskList.findById(id);
render(selectedTask);
}
Its model
@Entity
public class TaskList extends Model {
public String task;
public int priority;
public String category;
public String taskStatus;
public TaskList(String task, int priority, String category, String taskStatus) {
this.task = task;
this.priority = priority;
this.category = category;
this.taskStatus = taskStatus;
}
Do I need id property in the model (in database, I have id field)? If not, how to update when the model doesn't specify the id?
Thank you all.