当前位置: 技术问答>java相关
ejb 菜鸟问题 ------------------------------- 时飞请进 (谢绝灌水)
来源: 互联网 发布时间:2015-07-05
本文导语: Remote 接口 Person Home 接口 PersonHeme 实现文件 PersonImp1 PersonPK primaryKey; 编译时找不到 PersonPK public class PersonImpl implements EntityBean { protected PersonPK primaryKey; public PersonPK ejbCreate()throws CreateException ...
Remote 接口 Person
Home 接口 PersonHeme
实现文件 PersonImp1
PersonPK primaryKey;
编译时找不到 PersonPK
public class PersonImpl implements EntityBean
{
protected PersonPK primaryKey;
public PersonPK ejbCreate()throws CreateException
{
PreparedStatement ps = null;
try{
conn = getConnection();
primaryKey = new PersonPK(getNextId());
ps = conn.prepareStatement(
"insert into person (person_id) values (?)");
ps.setInt(1, primaryKey.personID);
if( ps.executeUpdate() == 0 )
System.err.println( "数据写入失败" );
return primaryKey;
... ...
}
时飞大哥不好意思,我又来打扰你了,其实我一直在很用心的学习。
有关于实体 ejb 的问题,编译器老是提示找不到类.....
我要被蹂躏死了.......... 大哥救命啊 ..............
|
你的PersonPk在那里?