Eclipse中的red5插件,import无法解析
Red5 plugin in Eclipse, import cannot be resolved
安装最新版本的 Red5、Eclipse 和 Infrared5 插件后,我使用 Red5 服务器运行时创建了一个新的动态 Web 项目。生成的代码是:
package org.red5.core;
import org.red5.logging.Red5LoggerFactory;
import org.red5.server.adapter.MultiThreadedApplicationAdapter;
import org.red5.server.api.IConnection;
import org.red5.server.api.scope.IScope;
public class Application extends MultiThreadedApplicationAdapter {
//private static Logger log = Red5LoggerFactory.getLogger(Application.class);
/** {@inheritDoc} */
@Override
public boolean connect(IConnection conn, IScope scope, Object[] params) {
//log.info("appConnect");
return true;
}
/** {@inheritDoc} */
@Override
public void disconnect(IConnection conn, IScope scope) {
//log.info("disconnect");
super.disconnect(conn, scope);
}
}
导入失败,出现错误:
Cannot find the class file for org.red5.server.api.IConnection.
The type org.red5.server.api.IConnection cannot be resolved.
It is indirectly referenced from required .class files
org.red5.logging.Red5LoggerFactory
和 org.red5.server.api.scope.IScope
相同
我认为插件可能已过时,可以通过更改导入位置来解决...但我不知道正确的导入位置。我在哪里可以获得最新版本的 Red5?
据我所知,IConnection
从未被移动过,其他进口商品都在正确的位置。
我不是 Red5 Eclipse 插件专家,我希望您的插件没有指向 red5 jar 的正确位置。如果您只想使用 Eclipse 进行 Red5 开发,您可以使用这些指南 Eclipse Setup or First Red5 App 开始(它们不需要 Pro)
安装最新版本的 Red5、Eclipse 和 Infrared5 插件后,我使用 Red5 服务器运行时创建了一个新的动态 Web 项目。生成的代码是:
package org.red5.core;
import org.red5.logging.Red5LoggerFactory;
import org.red5.server.adapter.MultiThreadedApplicationAdapter;
import org.red5.server.api.IConnection;
import org.red5.server.api.scope.IScope;
public class Application extends MultiThreadedApplicationAdapter {
//private static Logger log = Red5LoggerFactory.getLogger(Application.class);
/** {@inheritDoc} */
@Override
public boolean connect(IConnection conn, IScope scope, Object[] params) {
//log.info("appConnect");
return true;
}
/** {@inheritDoc} */
@Override
public void disconnect(IConnection conn, IScope scope) {
//log.info("disconnect");
super.disconnect(conn, scope);
}
}
导入失败,出现错误:
Cannot find the class file for org.red5.server.api.IConnection.
The type org.red5.server.api.IConnection cannot be resolved.
It is indirectly referenced from required .class files
org.red5.logging.Red5LoggerFactory
和 org.red5.server.api.scope.IScope
我认为插件可能已过时,可以通过更改导入位置来解决...但我不知道正确的导入位置。我在哪里可以获得最新版本的 Red5?
IConnection
从未被移动过,其他进口商品都在正确的位置。
我不是 Red5 Eclipse 插件专家,我希望您的插件没有指向 red5 jar 的正确位置。如果您只想使用 Eclipse 进行 Red5 开发,您可以使用这些指南 Eclipse Setup or First Red5 App 开始(它们不需要 Pro)