Restlet服务器无法解析

发布于 2024-12-10 05:30:56 字数 903 浏览 0 评论 0原文

我正在尝试设置一个简单的 Restlet 服务器。我已经阅读了 Restlet 网站上的教程。我已将“org.restlet.jar”文件绑定到我的类路径并尝试运行此代码:

 import org.restlet.resource.Get;
import org.restlet.resource.ServerResource;


public class data_server extends ServerResource {

    public static void main(String[] args) throws Exception {  
        // Create the HTTP server and listen on port 8182  
        new Server(Protocol.HTTP, 8182, data_server.class).start();  
    }  

    @Get  
    public String toString() {  
        return "hello, world";  
    }  

}

然后 Eclipse 向我显示以下错误:

Exception in thread "main" java.lang.Error: Unresolved compilation problems: 
    Server cannot be resolved to a type
    Server cannot be resolved to a type
    Protocol cannot be resolved to a variable
    Part03 cannot be resolved to a type

    at data_server.main(data_server.java:9)

有人可以帮助我吗?

im trying to setup a simple Restlet Server. I've reading the tutorials from the Restlet Website. I have bind the "org.restlet.jar" file to my classpath and try to run this code:

 import org.restlet.resource.Get;
import org.restlet.resource.ServerResource;


public class data_server extends ServerResource {

    public static void main(String[] args) throws Exception {  
        // Create the HTTP server and listen on port 8182  
        new Server(Protocol.HTTP, 8182, data_server.class).start();  
    }  

    @Get  
    public String toString() {  
        return "hello, world";  
    }  

}

And then Eclipse show me the following error:

Exception in thread "main" java.lang.Error: Unresolved compilation problems: 
    Server cannot be resolved to a type
    Server cannot be resolved to a type
    Protocol cannot be resolved to a variable
    Part03 cannot be resolved to a type

    at data_server.main(data_server.java:9)

Can somebody help me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文