我该如何运作?
<%
class thing {
public String doit () {
return "doing it";
}
}
request.setAttribute ("thing", new thing ());
%>
<body>
${requestScope.thing.doit ()}
</body>
我没有创建单独的已编译类的自由。它必须是内联的。
谢谢。
答案 0 :(得分:0)
您不需要此请求,因为该脚本是服务器端的,并且会更好地使用
<%
public String doit () {
return "doing it";
}
%>
<body>
<%
doSomething();
%>
</body>
以此调用函数。但是最后,这是使用