- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
以下方法:
private void startServer() { // snippet that starts the server on the local machine
try {
RemoteMethodImpl impl = new RemoteMethodImpl();
Naming.rebind( "Illusive-Server" , impl );
} catch(Exception exc) {
JOptionPane.showMessageDialog(this, "Problem starting the server", "Error", JOptionPane.ERROR_MESSAGE);
System.out.println(exc);
}
}
抛出此异常:
java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
java.lang.ClassNotFoundException: Interfaces.RemoteMethodIntf
当我启动我的项目时,我在 JOptionPane 中收到一条消息,内容是启动服务器时出现问题,然后出现上述异常。这可能是什么原因?
我不明白为什么最后一个异常声明说当我导入正确的包时找不到类。
最佳答案
此异常有四种情况。
导出时:您没有运行“rmic”,也没有执行 UnicastRemoteObject
的 Javadoc 序言中描述的步骤,从而使其变得不必要。
绑定(bind)时:注册表没有 stub 或远程接口(interface)或它们依赖于其类路径的东西。
查找时:客户端的类路径上没有这些东西。
调用远程方法时:您要么向 CLASSPATH 上不存在的类的服务器发送某些内容,要么从不在您的 CLASSPATH 上的类的服务器接收某些内容(包括异常):在这两种情况下可能是远程接口(interface)的方法签名中提到的类或接口(interface)的派生类或接口(interface)实现。
这是情况 2。注册表找不到指定的类。
有几种解决方案:
使用包含相关 JAR 或目录的 CLASSPATH 启动注册表。
通过 LocateRegistry.createRegistry() 在服务器 JVM 中启动注册表。
使用动态 stub ,如 UnicastRemoteObject 的 Javadoc 前言中所述。
但是,您仍然可能会遇到远程接口(interface)本身或其依赖的类的相同问题,在这种情况下,上述 1-3 仍然适用于该类/那些类。
确保不会发生上述情况 (4)。
使用代码库功能。这确实是一个部署选项,在我看来,在初始开发阶段应该避免这种情况。
关于java.rmi.ServerException : RemoteException occurred in server thread (ClassNotFoundException),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61473233/
当尝试从客户端访问 ejb 时,我收到此异常: java.rmi.ServerException: RuntimeException; nested exception is: java.lang
在 Azure 中定义警报时,我可以选择一个“信号”。与我相关的两个是:异常和服务器异常。两者有什么区别?我找不到任何涉及这两者的文档。在哪里可以看到“服务器异常”发生情况? 最佳答案 答案很简单:
我遵循了本教程:https://docs.oracle.com/javase/6/docs/technotes/guides/rmi/hello/hello-world.html#5 我在命令提示符下
我正在尝试使用 C# 中的客户端对象模型以编程方式将讨论帖子插入到 Sharepoint 讨论板列表中。我正在使用以下代码: var discussionList = sharepointConte
我正在使用 Guzzle(最新的 5.2)对服务器进行 POST 调用。此服务器上的 API 返回“HTTP/1.1 500 内部服务器错误”响应,但也返回一个正文。如何访问异常响应的主体? 以下是我
此错误阻止我运行该项目。 以下是版本信息: ~ ❯❯❯ java -version java version "1.8.0_45" Java(TM) SE Runtime Environment (b
我有一个 Java 非 Web 应用程序,它以编程方式启动 Jetty 服务器以提供 API 访问权限。它们之间的通信是通过 RMI 完成的。在我启动与该项目没有任何关系的 Tomcat 之前,一切正
以下方法: private void startServer() { // snippet that starts the server on the local machine
以下方法: private void startServer() { // snippet that starts the server on the local machine
以下方法: private void startServer() { // snippet that starts the server on the local machine
以下方法: private void startServer() { // snippet that starts the server on the local machine
我正在 scala 中运行我的第一个程序来打印 hello world。程序如下 object Main { def main(args: Array[String]) { println
以下方法: private void startServer() { // snippet that starts the server on the local machine
以下方法: private void startServer() { // snippet that starts the server on the local machine
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
看来我的redis服务器不工作了,谁能解决这个问题?提前谢谢你 public static function getActiveUser($len = 10) { $key =
运行 Server 类(使用 java server 命令)时出现异常,如下所示(我已经启动了 rmiregistry,使用 start rmiregistry 命令)。可能是什么问题呢? C:\Us
请帮忙。 我一步步按照教程Laravel 5.3 中的新增功能:Laravel Passport ( https://laracasts.com/series/whats-new-in-laravel
当我通过 eclipse 运行我的服务器代码时,出现以下异常: java.rmi.ServerException: RemoteException occurred in server thread;
以下方法: private void startServer() { // snippet that starts the server on the local machine try {
我是一名优秀的程序员,十分优秀!