<%! 和 有什么区别? %>和<%%>在 JSP 中?

发布于 2024-10-30 02:46:19 字数 75 浏览 0 评论 0原文

<%! 和有什么区别? JSP 中的 %><% %>

What is the difference between <%! %> and <% %> in JSP?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

゛时过境迁 2024-11-06 02:46:19

<代码><%! %> 是 JSP 声明标记,而 < code><% %> 是 JSP Scriptlet 标记< /a>.

放入 scriptlet 中的任何代码在编译时都会放入 JSP _jspService() 方法中(类似于 Servlet 的 doGetdoPost)。 .. 方法)。这是您通常编写 Java 代码的地方。

但是如果您想在 JSP 类中声明新方法或声明实例变量怎么办?这就是您使用声明标签的时候。您放入其中的任何内容都会被放入 JSP 中,_jspService() 方法的外部

<%! %> are JSP Declaration tags while <% %> are JSP Scriptlet tags.

Any code you put in scriptlets gets put in the JSPs _jspService() method when it's compiled (the analogue of a Servlet's doGet, doPost,... methods). This is what you'd usually write your Java code in.

But what if you want to declare new methods in your JSP class or declare instance variables? That's when you'd use the declaration tags. Any thing you put in there gets put into the JSP, outside of the _jspService() method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文