Maven jetty:带过滤运行
有谁知道如何使用 Maven jetty:run 带过滤?我已经看到了使用其他 Maven 目标 (jetty:run-exploded) 的其他一些答案,但这些答案不允许我在不重新启动的情况下动态修改我的 html 页面。
谢谢。
Does anyone know how to use maven jetty:run with filtering? I've seen some other answers using other maven goals (jetty:run-exploded) but these don't let me modify my html pages on the fly without restarting.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
afaik,使用 jetty:run 它使用源代码的文件,而不是目标。
您可能需要在启动 jetty 之前的某个阶段对源代码文件运行替换。
如果你不想替换你的源文件,我认为你被 run-exploded 困住了
afaik, with jetty:run it uses the source code's files, not the target.
you might need to run replacements on your source code files in a phase before you start jetty.
if you dont want replacements on your source files, i think you're stuck with run-exploded
我找到了解决方案并发布了我自己的堆栈溢出问题的答案,仅供参考: 如何在使用 maven jetty 插件时过滤资源?
不确定我是否应该复制该帖子,但如果这是接受的要求,我可以。
I found the solution and posted an answer to my own stack overflow question, FYI: How to filter resources when using maven jetty plugin?
Not sure whether I should duplicate that post, but I can if that's a requirement for acceptance.