getHibernateTemplate().find("from Bookinfo where bookname=key";
其中bookname和key都是jsp頁面傳過來的值,依據情況是不固定的,請問該怎麼寫這個動態SQL語句?
可以將 from Bookinfo where bookname=key作為單獨的string,在放入find之前Bookinfo=request.getP() ,然後放入find 裡面。或者類似於jdbc用?代替參數,設置參數。
本人對hibernate不甚了解,但方法都差不多