当前位置: 技术问答>java相关
EJB求救!
来源: 互联网 发布时间:2015-08-03
本文导语: 帮忙解释错误: public interface RemoteHome extends javax.ejb.EJBHome { RemoteInterface create()throws java.rmi.RemoteException,javax.ejb.CreateException; } 编译ejb接口RemoteHome 出现错误如下: D:jdk1.3.0_02bin>javac RemoteHome.java RemoteHome.java:3: cann...
帮忙解释错误:
public interface RemoteHome extends javax.ejb.EJBHome
{
RemoteInterface create()throws java.rmi.RemoteException,javax.ejb.CreateException;
}
编译ejb接口RemoteHome 出现错误如下:
D:jdk1.3.0_02bin>javac RemoteHome.java
RemoteHome.java:3: cannot resolve symbol
symbol : class RemoteInterface
location: interface RemoteHome
RemoteInterface create()throws java.rmi.RemoteException,javax.ejb.CreateExceptio
n;
^
1 error
public interface RemoteHome extends javax.ejb.EJBHome
{
RemoteInterface create()throws java.rmi.RemoteException,javax.ejb.CreateException;
}
编译ejb接口RemoteHome 出现错误如下:
D:jdk1.3.0_02bin>javac RemoteHome.java
RemoteHome.java:3: cannot resolve symbol
symbol : class RemoteInterface
location: interface RemoteHome
RemoteInterface create()throws java.rmi.RemoteException,javax.ejb.CreateExceptio
n;
^
1 error
|
RemoteInterface 的类文件和RemoteHome类文件是在同一包下面吗?
如果不是的话,你的home接口类文件导入你的远程接口类文件没有?
如果不是的话,你的home接口类文件导入你的远程接口类文件没有?
|
应该是没有同在一个包下面,错误的原因是没找的RemoteInterface
你把所有的类都放到一个包下编译会通过的
例如 d:ejbhellosrc
编译 javac d:ejbhellosrc*.java
我试过了
你把所有的类都放到一个包下编译会通过的
例如 d:ejbhellosrc
编译 javac d:ejbhellosrc*.java
我试过了
|
RemoteInterface 这个最好该个名字,感觉特想关键子
|
你的分号是中文的吧
|
我在Jbuilder7上试了一下,没有出现你说的问题,编译通过啊