Apache Wicket 公开内部属性
我刚刚尝试了 Apache Wicket“Hello, world”应用程序,我注意到在渲染的 HTML 输出中,Wicket 公开了它的内部属性。
这就是浏览器“查看源代码”中渲染的 HTML 的样子:
<html>
<body>
<span wicket:id="message" id="message">Hello World!</span>
</body>
</html>
How do I get rode the wicket:id="message"
attribute in the render HTML output?
I just tried the Apache Wicket "Hello, world" application and I noticed that in the rendered HTML output, Wicket is exposing it's internal attributes.
This is what the rendered HTML looks like in the 'view source' of the browser:
<html>
<body>
<span wicket:id="message" id="message">Hello World!</span>
</body>
</html>
How do I get rid of the wicket:id="message"
attribute in the rendered HTML output?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
切换到 部署 模式,例如
web.xml
:Switch to deployment mode, e.g. in
web.xml
:您可以将下面的代码放在 init 方法中。
如果您的应用程序类也有这个代码(如果在新版本中没有删除的话),
You can place below code in the init method if your applciation class
There was this one as well if not removed in the newer versions.
另外:此设置可在运行时配置:
Also: this setting is configurable in runtime with: