<%! 和 有什么区别? %>和<%%>在 JSP 中?
<%! 和有什么区别? JSP 中的 %>
和 <% %>
?
What is the difference between <%! %>
and <% %>
in JSP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
<%! 和有什么区别? JSP 中的 %>
和 <% %>
?
What is the difference between <%! %>
and <% %>
in JSP?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
<代码><%! %> 是 JSP 声明标记,而 < code><% %> 是 JSP Scriptlet 标记< /a>.
放入 scriptlet 中的任何代码在编译时都会放入 JSP
_jspService()
方法中(类似于 Servlet 的doGet
、doPost
)。 .. 方法)。这是您通常编写 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'sdoGet
,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.