在 JSP 中使用 java 方法
我想在我的jsp文件中调用一些方法。我有一个包含一些方法的类文件,我想使用该类文件中使用的一些方法。我已经在 JSP 中完成了页面导入,但仍然不知道如何做到这一点。我已经安装了一些额外的库,这是运行这些方法所必需的。我是否需要将库放置在我使用 jsp 文件的服务器中。谁能建议我该怎么做..
I want to call some methods in my jsp file. I have a class file with some methods and I want to use some of the methods used in that class file. I have gone through page import in JSP, but still I didn't get any idea about how to do that. I have installed some extra libraries and which is required to run those methods. Do I need to place the libraries in the server where I am using the jsp file. Can anyone suggest me how to do that..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
WEB-INF/lib
中添加 jarjsp:useBean
。WEB-INF/lib
jsp:useBean
isntead.使用 @page Directive 标签包含 java 类文件并在 scriptlet(<% %>) 标签中创建对象,并根据需要使用该类的方法。
Use @page Directive tag to include the java class file and create object in scriptlet(<% %>) tag and use the methods of that class as you want..