博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
restlet(javase版本) 的最基本使用
阅读量:6296 次
发布时间:2019-06-22

本文共 1659 字,大约阅读时间需要 5 分钟。

restlet  感觉上是一个简单的servlet    用它必须先下载jar包,去restlet.com 下载   废话不多讲 上代码先

首先要有个资源类,这个资源类就是返回到界面看的数据  它继承了ServeRsource类

1

public class HelloWorldResource extends ServerResource{
@Get public String represent() {
return "hello, world"; } } 2 配置访问地址 Application 就相当于管理路由的地址,由他设置一些你访问的地址
import org.restlet.Application; import org.restlet.Restlet; import org.restlet.routing.Router; public class FirstStepsApplication extends Application {
/** * Creates a root Restlet that will receive all incoming calls. */ @Override public synchronized Restlet createInboundRoot() {
// Create a router Restlet that routes each call to a new instance of HelloWorldResource. Router router = new Router(getContext()); // Defines only one route router.attach("/hello", HelloWorldResource.class); return router; } } 3 米和锅准备好了后就差把火了,有这把火就能基本的运行起来这个程序了 Component组件就是设置一些传输协议,端口和第一层地址,这是这3个程序的访问第一的路口
import org.restlet.Component; import org.restlet.data.Protocol; public class MovieClient {
public static void main(String[] args) throws Exception {
// Create a new Component. Component component = new Component(); // Add a new HTTP server listening on port 8182. component.getServers().add(Protocol.HTTP, 8182); // Attach the sample application. component.getDefaultHost().attach("/firstSteps", new FirstStepsApplication()); // Start the component. component.start(); } }
运行3后,只要在浏览器里面输入localhost:8182/firstStep/hello  就能显示出资源类中的String   hello,world 拉。
 
 

转载于:https://www.cnblogs.com/hongfan/p/6306405.html

你可能感兴趣的文章
服务器硬件问题整理的一点总结
查看>>
SAP S/4HANA Cloud: Revolutionizing the Next Generation of Cloud ERP
查看>>
Mellanox公司计划利用系统芯片提升存储产品速度
查看>>
白帽子守护网络安全,高薪酬成大学生就业首选!
查看>>
ARM想将芯片装进人类大脑 降低能耗是一大挑战
查看>>
Oracle数据库的备份方法
查看>>
Selenium 自动登录考勤系统
查看>>
关于如何以编程的方式执行TestNG
查看>>
智能照明造福千家万户 家居智能不再是梦
查看>>
物联网如何跳出“看起来很美”?
查看>>
浅谈MySQL 数据库性能优化
查看>>
《UNIX/Linux 系统管理技术手册(第四版)》——1.10 其他的权威文档
查看>>
灵动空间 创享生活
查看>>
《UNIX网络编程 卷1:套接字联网API(第3版)》——8.6 UDP回射客户程序:dg_cli函数...
查看>>
不要将时间浪费到编写完美代码上
查看>>
《算法基础:打开算法之门》一3.4 归并排序
查看>>
高德开放平台开放源代码 鼓励开发者创新
查看>>
《高并发Oracle数据库系统的架构与设计》一2.5 索引维护
查看>>
Firefox 是 Pwn2own 2014 上攻陷次数最多的浏览器
查看>>
阿里感悟(十八)- 应届生Review
查看>>