江西广告网
标题:
如何在JPA的po类中调用存储过程和函数
[打印本页]
作者:
樱花难忘
时间:
2009-2-20 11:18
标题:
如何在JPA的po类中调用存储过程和函数
在项目开发中用到了JPA规范,并在po类中使用了存储过程,这种资料在网上很容易找到,所以很快就跑通了,代码如下: 1
登录/注册后可看大图
@Entity 2
登录/注册后可看大图
登录/注册后可看大图
@Table(name = "USER", schema = "MOBILE", uniqueConstraints =
登录/注册后可看大图
{ 3
登录/注册后可看大图
登录/注册后可看大图
@UniqueConstraint(columnNames =
登录/注册后可看大图
{ "LOGINID" }), 4
登录/注册后可看大图
登录/注册后可看大图
@UniqueConstraint(columnNames =
登录/注册后可看大图
{ "USERACCOUNT" }) }) 5
登录/注册后可看大图
登录/注册后可看大图
@NamedNativeQuery(name = "addUser", query = "{call addUser(:pPortalID,:ploginid,:ploginpasswd,:pSelfQuiz,:pSelfAnswer,:pUserEmail,:pUserAccount,:pUserPin)}", hints =
登录/注册后可看大图
{ @QueryHint(name = "org.hibernate.callable", value = "true") }, resultClass = User.class) 6
登录/注册后可看大图
登录/注册后可看大图
public class User implements java.io.Serializable
登录/注册后可看大图
{ 7
登录/注册后可看大图
8
登录/注册后可看大图
private static final long serialVersionUID = 5325039036880950119L; 9
登录/注册后可看大图
private String userid; 10
登录/注册后可看大图
private String loginid; 11
登录/注册后可看大图
private String passwd; 12
登录/注册后可看大图
//省略若干代码 13
登录/注册后可看大图
} 但是后来却要求将addUser改成了函数,所以也要将po类中的调用修改。起初我以为很简单,数据库中的存储过程和函数差不多,不用修改直接调用即可。但是事实却不像我想得那样,错误百出,我上网查了很多资料,但是没有能给出答案的,后来才知道只要修改一个地方就可以获得想要的功能,郁闷! 下面是修改后的代码: 1
登录/注册后可看大图
@Entity 2
登录/注册后可看大图
登录/注册后可看大图
@Table(name = "USER", schema = "MOBILE", uniqueConstraints =
登录/注册后可看大图
{ 3
登录/注册后可看大图
登录/注册后可看大图
@UniqueConstraint(columnNames =
登录/注册后可看大图
{ "LOGINID" }), 4
登录/注册后可看大图
登录/注册后可看大图
@UniqueConstraint(columnNames =
登录/注册后可看大图
{ "USERACCOUNT" }) }) 5
登录/注册后可看大图
登录/注册后可看大图
@NamedNativeQuery(name = "addUser", query = "{?=call addUser(:pPortalID,:ploginid,:ploginpasswd,:pSelfQuiz,:pSelfAnswer,:pUserEmail,:pUserAccount,:pUserPin)}", hints =
登录/注册后可看大图
{ @QueryHint(name = "org.hibernate.callable", value = "true") }, resultClass = User.class) 6
登录/注册后可看大图
登录/注册后可看大图
public class User implements java.io.Serializable
登录/注册后可看大图
{ 7
登录/注册后可看大图
8
登录/注册后可看大图
private static final long serialVersionUID = 5325039036880950119L; 9
登录/注册后可看大图
private String userid; 10
登录/注册后可看大图
private String loginid; 11
登录/注册后可看大图
private String passwd; 12
登录/注册后可看大图
//省略若干代码 13
登录/注册后可看大图
} 请注意call addUser语句,存储过程是直接调用,而调用函数则是在前面加?=.这可是我几天几夜不休得出的结果,拿出来与大家分享,希望有需要的朋友不要走我的弯路!
欢迎光临 江西广告网 (http://bbs.jxadw.com/)
Powered by Discuz! X3.2