Hibernate外卡

时间:2017-10-28 06:12:49

标签: hibernate

大家好。

从昨天开始,我仍然在努力解决这个问题。我有一个表作者,并希望jsp搜索文本框在用户键入特定字母时返回“name”列下的作者姓名。传递一个字符串,例子(A中的键将返回Alice,Z将返回Zara,P将返回Peter,R将返回Remmy等。从昨天开始我使用了Google,Jboss,Hibernate,Stack-overflow和许多其他知识库站点我的尝试到目前为止

begin
INSERT INTO LOG_TABLE ( log_date,log_message) VALUES  (SYSDATE,'Trigger hit on insert');
end;
/

public String fetchAuthors(Model thModel){

@Transactional
public List<Author> getauthor() {           
   Session session = sessionFactory.getCurrentSession();       
   String searchString="A%";
   Query<Author> query = session.createQuery(
           "select a " +
           "from Author  a " +
           "where a.name like :searchString", Author.class );
   query.setParameter("searchString",searchString+"%");    
   List<Author>author =query.getResultList();    
                return author;
}


@RequestMapping("/processForm")

}

0 个答案:

没有答案