undertow.resourcePath=webapp,module-web1/src/main/webapp,module-web2/src/main/webapp, src/main/webapp,
undertow.txt的 配置如上。
在 module-web1 的 路径 下有个 1.html
/src/main/webapp/WEB-INF/1.html
在 module-web2 的 路径 下有个 2.html
/src/main/webapp/WEB-INF/2.html
现在 在 controller 中 访问2个action方法 分别返回1.html 和 2.html
如上述配置,在undertow.txt中 如果module-web1/src/main/webapp在前面 那么访问1.html没问题,访问2.html就找不到错误。
同理 把 module-web2/src/main/webapp放在前面,情况正好相反。
理想中的预期应该访问action返回2.html 是默认去第一个module-web1/src/main/webapp找,找不到去第二个路径下寻找,找到然后返回页面。
这样该如何配置呢?
项目:JFinal
https://www.jfinal.com/doc/1-5