當前位置: 首頁>>代碼示例>>Java>>正文


Java ServletContext.setInitParameter方法代碼示例

本文整理匯總了Java中javax.servlet.ServletContext.setInitParameter方法的典型用法代碼示例。如果您正苦於以下問題:Java ServletContext.setInitParameter方法的具體用法?Java ServletContext.setInitParameter怎麽用?Java ServletContext.setInitParameter使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在javax.servlet.ServletContext的用法示例。


在下文中一共展示了ServletContext.setInitParameter方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: servletContextInitializer

import javax.servlet.ServletContext; //導入方法依賴的package包/類
@Bean
public ServletContextInitializer servletContextInitializer() {

  return new ServletContextInitializer() {

    @Override
    public void onStartup(ServletContext servletContext) throws ServletException {
      String loggingServerIP = portalConfig.cloggingUrl();
      String loggingServerPort = portalConfig.cloggingPort();
      String credisServiceUrl = portalConfig.credisServiceUrl();

      servletContext.setInitParameter("loggingServerIP",
          Strings.isNullOrEmpty(loggingServerIP) ? "" : loggingServerIP);
      servletContext.setInitParameter("loggingServerPort",
          Strings.isNullOrEmpty(loggingServerPort) ? "" : loggingServerPort);
      servletContext.setInitParameter("credisServiceUrl",
          Strings.isNullOrEmpty(credisServiceUrl) ? "" : credisServiceUrl);
    }
  };
}
 
開發者ID:dewey-its,項目名稱:apollo-custom,代碼行數:21,代碼來源:WebContextConfiguration.java

示例2: mergeParameters

import javax.servlet.ServletContext; //導入方法依賴的package包/類
/**
 * Merge the context initialization parameters specified in the application
 * deployment descriptor with the application parameters described in the
 * server configuration, respecting the <code>override</code> property of
 * the application parameters appropriately.
 */
private void mergeParameters() {
	Map<String, String> mergedParams = new HashMap<String, String>();

	String names[] = findParameters();
	for (int i = 0; i < names.length; i++) {
		mergedParams.put(names[i], findParameter(names[i]));
	}

	ApplicationParameter params[] = findApplicationParameters();
	for (int i = 0; i < params.length; i++) {
		if (params[i].getOverride()) {
			if (mergedParams.get(params[i].getName()) == null) {
				mergedParams.put(params[i].getName(), params[i].getValue());
			}
		} else {
			mergedParams.put(params[i].getName(), params[i].getValue());
		}
	}

	ServletContext sc = getServletContext();
	for (Map.Entry<String, String> entry : mergedParams.entrySet()) {
		sc.setInitParameter(entry.getKey(), entry.getValue());
	}

}
 
開發者ID:how2j,項目名稱:lazycat,代碼行數:32,代碼來源:StandardContext.java

示例3: addRootContext

import javax.servlet.ServletContext; //導入方法依賴的package包/類
private void addRootContext(ServletContext container) {
  // Create the application context
  AnnotationConfigWebApplicationContext rootContext = new AnnotationConfigWebApplicationContext();
  rootContext.register(SpringContextConfig.class); 
	 
  // Register application context with ContextLoaderListener
  container.addListener(new ContextLoaderListener(rootContext));
  container.addListener(new AppSessionListener());
  container.setInitParameter("contextConfigLocation", "org.packt.secured.mvc.core");
  container.setSessionTrackingModes(EnumSet.of(SessionTrackingMode.COOKIE)); // if URL, enable sessionManagement URL rewriting   
}
 
開發者ID:PacktPublishing,項目名稱:Spring-5.0-Cookbook,代碼行數:12,代碼來源:SpringWebInitializer.java

示例4: addRootContext

import javax.servlet.ServletContext; //導入方法依賴的package包/類
private void addRootContext(ServletContext container) {
  // Create the application context
  AnnotationConfigWebApplicationContext rootContext = new AnnotationConfigWebApplicationContext();
  rootContext.register(SpringContextConfig.class); 
	 
  // Register application context with ContextLoaderListener
  container.addListener(new ContextLoaderListener(rootContext));
 container.setInitParameter("contextConfigLocation", "org.packt.web.reactor.security.config");
 container.setSessionTrackingModes(EnumSet.of(SessionTrackingMode.COOKIE)); // if URL, enable sessionManagement URL rewriting   
	 
}
 
開發者ID:PacktPublishing,項目名稱:Spring-5.0-Cookbook,代碼行數:12,代碼來源:SpringWebinitializer.java

示例5: mergeParameters

import javax.servlet.ServletContext; //導入方法依賴的package包/類
/**
 * Merge the context initialization parameters specified in the application
 * deployment descriptor with the application parameters described in the
 * server configuration, respecting the <code>override</code> property of
 * the application parameters appropriately.
 */
private void mergeParameters() {
    Map<String,String> mergedParams = new HashMap<String,String>();
    
    String names[] = findParameters();
    for (int i = 0; i < names.length; i++) {
        mergedParams.put(names[i], findParameter(names[i]));
    }

    ApplicationParameter params[] = findApplicationParameters();
    for (int i = 0; i < params.length; i++) {
        if (params[i].getOverride()) {
            if (mergedParams.get(params[i].getName()) == null) {
                mergedParams.put(params[i].getName(),
                        params[i].getValue());
            }
        } else {
            mergedParams.put(params[i].getName(), params[i].getValue());
        }
    }
    
    ServletContext sc = getServletContext();
    for (Map.Entry<String,String> entry : mergedParams.entrySet()) {
        sc.setInitParameter(entry.getKey(), entry.getValue());
    }

}
 
開發者ID:liaokailin,項目名稱:tomcat7,代碼行數:33,代碼來源:StandardContext.java

示例6: contextInitParamsInitializer

import javax.servlet.ServletContext; //導入方法依賴的package包/類
@Bean
public ServletContextInitializer contextInitParamsInitializer(final ResteasyConfigurationProperties resteasy) {
	return new ServletContextInitializer() {

		@Override
		public void onStartup(ServletContext servletContext) throws ServletException {
			for (Entry<String, String> entry : resteasy.getInit().entrySet()) {
				servletContext.setInitParameter(entry.getKey(), entry.getValue());
			}
		}
	};
}
 
開發者ID:holon-platform,項目名稱:holon-jaxrs,代碼行數:13,代碼來源:ResteasyAutoConfiguration.java

示例7: initializer

import javax.servlet.ServletContext; //導入方法依賴的package包/類
@Bean
public ServletContextInitializer initializer() {
	return new ServletContextInitializer() {

		@Override
		public void onStartup(ServletContext servletContext) throws ServletException {
			servletContext.setInitParameter("resteasy.role.based.security", "true");
		}
	};
}
 
開發者ID:holon-platform,項目名稱:holon-jaxrs,代碼行數:11,代碼來源:ResteasyAuthAutoConfiguration.java

示例8: onStartup

import javax.servlet.ServletContext; //導入方法依賴的package包/類
@Override
public void onStartup(ServletContext servletContext) throws ServletException {
    servletContext.addListener(WebAppRootListener.class);
    servletContext.setInitParameter(ContextParamDictionary.PROJECT_PATH.getParamName(),
            ContextParamDictionary.PROJECT_PATH.getParamValue());
}
 
開發者ID:tong12580,項目名稱:OutsourcedProject,代碼行數:7,代碼來源:WebAppRootContext.java


注:本文中的javax.servlet.ServletContext.setInitParameter方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。