org.eclipse.jetty.webapp.WebAppContext.addOverrideDescriptor()方法的使用及代码示例

x33g5p2x  于2022-02-02 转载在 其他  
字(1.6k)|赞(0)|评价(0)|浏览(92)

本文整理了Java中org.eclipse.jetty.webapp.WebAppContext.addOverrideDescriptor()方法的一些代码示例,展示了WebAppContext.addOverrideDescriptor()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WebAppContext.addOverrideDescriptor()方法的具体详情如下:
包路径:org.eclipse.jetty.webapp.WebAppContext
类名称:WebAppContext
方法名:addOverrideDescriptor

WebAppContext.addOverrideDescriptor介绍

[英]The override descriptor is a web.xml format file that is applied to the context after the standard WEB-INF/web.xml
[中]覆盖描述符是一个web。应用于标准WEB-INF/WEB后的上下文的xml格式文件。xml

代码示例

代码示例来源:origin: OneBusAway/onebusaway-application-modules

context.addOverrideDescriptor("/WEB-INF/override-web.xml");
 System.setProperty("gtfsPath",
   cli.getOptionValue(WebappCommon.ARG_GTFS_PATH));
 context.addOverrideDescriptor("/WEB-INF/builder-override-web.xml");

代码示例来源:origin: org.onebusaway/onebusaway-quickstart-mains

context.addOverrideDescriptor("/WEB-INF/override-web.xml");
 System.setProperty("gtfsPath",
   cli.getOptionValue(WebappCommon.ARG_GTFS_PATH));
 context.addOverrideDescriptor("/WEB-INF/builder-override-web.xml");

代码示例来源:origin: org.apache.brooklyn/brooklyn-rest-server

(!hasOverrideSecurityProvider && hasConfigSecurityProvider && AnyoneSecurityProvider.class.getName().equals(configSecurityProvider.get()));
if (!hasAnyoneOverrideSecurityProvide && (hasOverrideSecurityProvider || hasConfigSecurityProvider)) {
  ((WebAppContext)context).addOverrideDescriptor(getClass().getResource("/web-security.xml").toExternalForm());
  if (hasOverrideSecurityProvider) {
    ((BrooklynProperties) mgmt.getConfig()).put(

相关文章

WebAppContext类方法