demo.jsp
来自「RESIN 3.2 最新源码」· JSP 代码 · 共 20 行
JSP
20 行
<%@ page import="com.caucho.burlap.client.BurlapProxyFactory" %><%@ page import="example.MathService" %><%BurlapProxyFactory factory = new BurlapProxyFactory();// http://localhost:8080/resin-doc/tutorial/burlap-add/burlap/mathString url = ("http://" + request.getServerName() + ":" + request.getServerPort() + request.getContextPath() + "/burlap/math");MathService math = (MathService) factory.create(MathService.class, url);%><pre>3 + 2 = <%= math.add(3, 2) %>3 - 2 = <%= math.sub(3, 2) %>3 * 2 = <%= math.mul(3, 2) %>3 / 2 = <%= math.div(3, 2) %></pre>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?