在 web.xml 中
<jsp-config>
<jsp-property-group>
<description> </description>
<display-name>JSPConfiguration</display-name>
<url-pattern>*.jsp</url-pattern>
<page-encoding>EUC-KR</page-encoding>
</jsp-property-group>
</jsp-config>
在 Java 配置中
public class WebInitializer implements WebApplicationInitializer {
public void onStartup(ServletContext servletContext)
throws ServletException {
// ??
}
}
如何在 JavaConfig 中设置 jsp-config?