我有问题,JSF正在显示原始源代码页,当调用exmaple .... / index.xhtml /而不是正常路径... / index.xhtml
通过在路径末尾添加额外的斜杠,它会显示未渲染的页面。我该如何关闭此行为?
我使用JSF 2.2.13的spring boot。我在Spring Config中使用以下行注册JSF。
ServletRegistrationBean registration = new ServletRegistrationBean(new FacesServlet(), "*.xhtml");
一切正常,我们在添加额外斜杠时发现了这种奇怪的行为。
有任何建议如何避免这种情况?