我尝试执行给定的servlet代码,就像一个例子来理解它是如何工作的。 但我不知道attribut optionDAO在哪里以及使用它的必要性。 find方法似乎是hibernate在包“.base”中给出的。 我应该怎么做才能跳过这个。 感谢。
答案 0 :(得分:0)
这只是一个根据DAO模式的虚构代码示例,带有一个自我解释的类名和方法名,您需要自己编写/实现。 E.g。
public class OptionDAO {
public List<Option> find(String dd, String val) {
// Write code here yourself which does the desired task: returning
// a list of options based on the given dropdown id and value.
return options;
}
}
如何做到这一点的方式因环境,使用的ORM库,数据模型设计等而异。不可能给出具体的代码示例。可以找到如何使用“普通香草”JDBC进行操作的示例here。可以找到如何使用Hibernate执行此操作的示例here。如何使用JPA进行检查here。