📄 demo.jsp
字号:
<%@ 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -