本文整理汇总了Java中org.ofbiz.base.container.ContainerConfig类的典型用法代码示例。如果您正苦于以下问题:Java ContainerConfig类的具体用法?Java ContainerConfig怎么用?Java ContainerConfig使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ContainerConfig类属于org.ofbiz.base.container包,在下文中一共展示了ContainerConfig类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: init
import org.ofbiz.base.container.ContainerConfig; //导入依赖的package包/类
@Override
public void init(String[] args, String name, String configFile) throws ContainerException {
this.name = name;
// initialize the LocalDispatcherFactory
ContainerConfig.Container cfg = ContainerConfig.getContainer(name, configFile);
ContainerConfig.Container.Property dispatcherFactoryProperty = cfg.getProperty("dispatcher-factory");
if (dispatcherFactoryProperty == null || UtilValidate.isEmpty(dispatcherFactoryProperty.value)) {
throw new ContainerException("Unable to initialize container " + name + ": dispatcher-factory property is not set");
}
ClassLoader loader = Thread.currentThread().getContextClassLoader();
try {
Class<?> c = loader.loadClass(dispatcherFactoryProperty.value);
dispatcherFactory = (LocalDispatcherFactory) c.newInstance();
} catch (Exception e) {
throw new ContainerException(e);
}
}
示例2: init
import org.ofbiz.base.container.ContainerConfig; //导入依赖的package包/类
@Override
public void init(String[] args, String name, String configFile) throws ContainerException {
this.name = name;
ContainerConfig.Container cc = ContainerConfig.getContainer(name, configFile);
preloadedDelegatorNames = StringUtil.split(ContainerConfig.getPropertyValue(cc, "preloaded-delegators", "default"), ", ");
}
示例3: getAllContainers
import org.ofbiz.base.container.ContainerConfig; //导入依赖的package包/类
public static List<ContainerConfig.Container> getAllContainers(String componentName) {
List<ContainerConfig.Container> containers = new ArrayList<ContainerConfig.Container>();
for (ComponentConfig cc : getAllComponents()) {
if (componentName == null || componentName.equals(cc.getComponentName())) {
containers.addAll(cc.getContainers());
}
}
return containers;
}
示例4: createConnector
import org.ofbiz.base.container.ContainerConfig; //导入依赖的package包/类
protected Connector createConnector(ContainerConfig.Container.Property connectorProp) throws ContainerException {
if (tomcat == null) {
throw new ContainerException("Cannot create Connector without Tomcat instance!");
}
Connector connector = null;
if (UtilValidate.isNotEmpty(connectorProp.properties)) {
String protocol = ContainerConfig.getPropertyValue(connectorProp, "protocol", "HTTP/1.1");
int port = ContainerConfig.getPropertyValue(connectorProp, "port", 0) + Start.getInstance().getConfig().portOffset;
// set the protocol and the port first
connector = new Connector(protocol);
connector.setPort(port);
// then set all the other parameters
for (ContainerConfig.Container.Property prop: connectorProp.properties.values()) {
if ("protocol".equals(prop.name) || "port".equals(prop.name)) {
// protocol and port are already set
continue;
}
if (IntrospectionUtils.setProperty(connector, prop.name, prop.value)) {
if (prop.name.indexOf("Pass") != -1) {
// this property may be a password, do not include its value in the logs
Debug.logInfo("Tomcat " + connector + ": set " + prop.name, module);
} else {
Debug.logInfo("Tomcat " + connector + ": set " + prop.name + "=" + prop.value, module);
}
} else {
Debug.logWarning("Tomcat " + connector + ": ignored parameter " + prop.name, module);
}
}
tomcat.getService().addConnector(connector);
}
return connector;
}
示例5: start
import org.ofbiz.base.container.ContainerConfig; //导入依赖的package包/类
/**
* Start the container
*
* @return true if server started
* @throws org.ofbiz.base.container.ContainerException
*
*/
@Override
public boolean start() throws ContainerException {
ContainerConfig.Container cfg = ContainerConfig.getContainer(name, configFile);
String dispatcherName = ContainerConfig.getPropertyValue(cfg, "dispatcher-name", "JavaMailDispatcher");
String delegatorName = ContainerConfig.getPropertyValue(cfg, "delegator-name", "default");
this.deleteMail = "true".equals(ContainerConfig.getPropertyValue(cfg, "delete-mail", "false"));
this.delegator = DelegatorFactory.getDelegator(delegatorName);
this.dispatcher = ServiceContainer.getLocalDispatcher(dispatcherName, delegator);
this.timerDelay = ContainerConfig.getPropertyValue(cfg, "poll-delay", 300000);
this.maxSize = ContainerConfig.getPropertyValue(cfg, "maxSize", 1000000); // maximum size in bytes
// load the userLogin object
String runAsUser = ContainerConfig.getPropertyValue(cfg, "run-as-user", "system");
try {
this.userLogin = EntityQuery.use(delegator).from("UserLogin").where("userLoginId", runAsUser).queryOne();
} catch (GenericEntityException e) {
Debug.logError(e, "Unable to load run-as-user UserLogin; cannot start container", module);
return false;
}
// load the MCA configuration
ServiceMcaUtil.readConfig();
// load the listeners
List<ContainerConfig.Container.Property> configs = cfg.getPropertiesWithValue("store-listener");
for (ContainerConfig.Container.Property prop: configs) {
Session session = this.makeSession(prop);
Store store = this.getStore(session);
if (store != null) {
stores.put(store, session);
store.addStoreListener(new LoggingStoreListener());
}
}
// start the polling timer
if (UtilValidate.isNotEmpty(stores)) {
pollTimer.scheduleAtFixedRate(new PollerTask(dispatcher, userLogin), timerDelay, timerDelay, TimeUnit.MILLISECONDS);
} else {
Debug.logWarning("No JavaMail Store(s) configured; poller disabled.", module);
}
return true;
}
示例6: makeSession
import org.ofbiz.base.container.ContainerConfig; //导入依赖的package包/类
protected Session makeSession(ContainerConfig.Container.Property client) {
Properties props = new Properties();
Map<String, ContainerConfig.Container.Property> clientProps = client.properties;
if (clientProps != null) {
for (ContainerConfig.Container.Property p: clientProps.values()) {
props.setProperty(p.name.toLowerCase(), p.value);
}
}
return Session.getInstance(props);
}
示例7: start
import org.ofbiz.base.container.ContainerConfig; //导入依赖的package包/类
/**
* @see org.ofbiz.base.container.Container#start()
*/
@Override
public boolean start() throws ContainerException {
if("all-tenants".equals(this.overrideDelegator)) {
if (!EntityUtil.isMultiTenantEnabled()) {
Debug.logWarning("Multitenant is disabled. Please enable multitenant. (e.g. general.properties --> multitenant=Y)", module);
return true;
}
ContainerConfig.Container cfg = ContainerConfig.getContainer(name, configFile);
ContainerConfig.Container.Property delegatorNameProp = cfg.getProperty("delegator-name");
String delegatorName = null;
if (delegatorNameProp == null || UtilValidate.isEmpty(delegatorNameProp.value)) {
throw new ContainerException("Invalid delegator-name defined in container configuration");
} else {
delegatorName = delegatorNameProp.value;
}
Delegator delegator = DelegatorFactory.getDelegator(delegatorName);
if (delegator == null) {
throw new ContainerException("Invalid delegator name!");
}
List<EntityExpr> expr = new LinkedList<EntityExpr>();
expr.add(EntityCondition.makeCondition("disabled", EntityOperator.EQUALS, "N"));
expr.add(EntityCondition.makeCondition("disabled", EntityOperator.EQUALS, null));
List<GenericValue> tenantList;
try {
tenantList = EntityQuery.use(delegator).from("Tenant").where(expr, EntityOperator.OR).queryList();
} catch (GenericEntityException e) {
throw new ContainerException(e.getMessage());
}
for (GenericValue tenant : tenantList) {
this.overrideDelegator = delegator.getDelegatorName() + "#" + tenant.getString("tenantId");
loadContainer();
}
} else {
loadContainer();
}
return true;
}
示例8: getAllContainers
import org.ofbiz.base.container.ContainerConfig; //导入依赖的package包/类
public static List<ContainerConfig.Container> getAllContainers(String componentName) {
List<ContainerConfig.Container> containers = FastList.newInstance();
for (ComponentConfig cc: getAllComponents()) {
if (componentName == null || componentName.equals(cc.getComponentName())) {
containers.addAll(cc.getContainers());
}
}
return containers;
}
示例9: start
import org.ofbiz.base.container.ContainerConfig; //导入依赖的package包/类
/**
* Start the container
*
* @return true if server started
* @throws org.ofbiz.base.container.ContainerException
*
*/
public boolean start() throws ContainerException {
ContainerConfig.Container cfg = ContainerConfig.getContainer(name, configFile);
String dispatcherName = ContainerConfig.getPropertyValue(cfg, "dispatcher-name", "JavaMailDispatcher");
String delegatorName = ContainerConfig.getPropertyValue(cfg, "delegator-name", "default");
this.deleteMail = "true".equals(ContainerConfig.getPropertyValue(cfg, "delete-mail", "false"));
this.delegator = DelegatorFactory.getDelegator(delegatorName);
this.dispatcher = ServiceContainer.getLocalDispatcher(dispatcherName, delegator);
this.timerDelay = ContainerConfig.getPropertyValue(cfg, "poll-delay", 300000);
this.maxSize = ContainerConfig.getPropertyValue(cfg, "maxSize", 1000000); // maximum size in bytes
// load the userLogin object
String runAsUser = ContainerConfig.getPropertyValue(cfg, "run-as-user", "system");
try {
this.userLogin = delegator.findOne("UserLogin", false, "userLoginId", runAsUser);
} catch (GenericEntityException e) {
Debug.logError(e, "Unable to load run-as-user UserLogin; cannot start container", module);
return false;
}
// load the MCA configuration
ServiceMcaUtil.readConfig();
// load the listeners
List<ContainerConfig.Container.Property> configs = cfg.getPropertiesWithValue("store-listener");
for (ContainerConfig.Container.Property prop: configs) {
Session session = this.makeSession(prop);
Store store = this.getStore(session);
if (store != null) {
stores.put(store, session);
store.addStoreListener(new LoggingStoreListener());
}
}
// start the polling timer
if (UtilValidate.isNotEmpty(stores)) {
pollTimer.scheduleAtFixedRate(new PollerTask(dispatcher, userLogin), timerDelay, timerDelay, TimeUnit.MILLISECONDS);
} else {
Debug.logWarning("No JavaMail Store(s) configured; poller disabled.", module);
}
return true;
}
示例10: start
import org.ofbiz.base.container.ContainerConfig; //导入依赖的package包/类
/**
* @see org.ofbiz.base.container.Container#start()
*/
public boolean start() throws ContainerException {
if("all-tenants".equals(this.overrideDelegator)) {
if ("N".equals(UtilProperties.getPropertyValue("general.properties", "multitenant"))) {
Debug.logWarning("Please enable multitenant. (e.g. general.properties --> multitenant=Y)", module);
return true;
}
ContainerConfig.Container cfg = ContainerConfig.getContainer(name, configFile);
ContainerConfig.Container.Property delegatorNameProp = cfg.getProperty("delegator-name");
String delegatorName = null;
if (delegatorNameProp == null || UtilValidate.isEmpty(delegatorNameProp.value)) {
throw new ContainerException("Invalid delegator-name defined in container configuration");
} else {
delegatorName = delegatorNameProp.value;
}
Delegator delegator = DelegatorFactory.getDelegator(delegatorName);
if (delegator == null) {
throw new ContainerException("Invalid delegator name!");
}
List<EntityExpr> expr = FastList.newInstance();
expr.add(EntityCondition.makeCondition("disabled", EntityOperator.EQUALS, "N"));
expr.add(EntityCondition.makeCondition("disabled", EntityOperator.EQUALS, null));
List<GenericValue> tenantList;
try {
tenantList = delegator.findList("Tenant", EntityCondition.makeCondition(expr, EntityOperator.OR), null, null, null, false);
} catch (GenericEntityException e) {
throw new ContainerException(e.getMessage());
}
for (GenericValue tenant : tenantList) {
this.overrideDelegator = delegator.getDelegatorName() + "#" + tenant.getString("tenantId");
loadContainer();
}
} else {
loadContainer();
}
return true;
}
示例11: readContainerConfig
import org.ofbiz.base.container.ContainerConfig; //导入依赖的package包/类
private ContainerConfig.Container readContainerConfig(String configFile) throws ContainerException {
ContainerConfig.Container cc = ContainerConfig.getContainer(CONTAINER_NAME, configFile);
if (cc == null) {
throw new ContainerException(CONTAINER_NAME + " configuration not found in container config!");
}
return cc;
}
示例12: createRoutes
import org.ofbiz.base.container.ContainerConfig; //导入依赖的package包/类
private RouteBuilder createRoutes() throws ContainerException {
String routeName = ContainerConfig.getPropertyValue(config, "route-name", "org.ofbiz.camel.route.DemoRoute");
ClassLoader loader = Thread.currentThread().getContextClassLoader();
try {
Class<?> c = loader.loadClass(routeName);
return (RouteBuilder) c.newInstance();
} catch (Exception e) {
Debug.logError(e, "Cannot get instance of the camel route: " + routeName, module);
throw new ContainerException(e);
}
}
示例13: start
import org.ofbiz.base.container.ContainerConfig; //导入依赖的package包/类
@Override
public boolean start() throws ContainerException {
// get the container config
ContainerConfig.Container cfg = ContainerConfig.getContainer(containerName, configFileLocation);
String pluginPath = ContainerConfig.getPropertyValue(cfg, "plugin-path", System.getProperty("ofbiz.home")+"/framework/plugin/plugins");
Debug.logInfo("Plugin Path: "+pluginPath, module);
pluginManager = new DefaultPluginManager(new File(pluginPath));
pluginManager.loadPlugins();
pluginManager.startPlugins();
return false;
}
示例14: getContainers
import org.ofbiz.base.container.ContainerConfig; //导入依赖的package包/类
public List<ContainerConfig.Container> getContainers() {
return this.containers;
}
示例15: init
import org.ofbiz.base.container.ContainerConfig; //导入依赖的package包/类
@Override
public void init(String[] args, String name, String configFile) throws ContainerException {
this.name = name;
// get the container config
ContainerConfig.Container cc = ContainerConfig.getContainer(name, configFile);
if (cc == null) {
throw new ContainerException("No catalina-container configuration found in container config!");
}
// embedded properties
boolean useNaming = ContainerConfig.getPropertyValue(cc, "use-naming", false);
//int debug = ContainerConfig.getPropertyValue(cc, "debug", 0);
// grab some global context settings
this.contextReloadable = ContainerConfig.getPropertyValue(cc, "apps-context-reloadable", false);
this.crossContext = ContainerConfig.getPropertyValue(cc, "apps-cross-context", true);
this.distribute = ContainerConfig.getPropertyValue(cc, "apps-distributable", true);
this.catalinaRuntimeHome = ContainerConfig.getPropertyValue(cc, "catalina-runtime-home", "runtime/catalina");
// set catalina_home
System.setProperty(Globals.CATALINA_HOME_PROP, System.getProperty("ofbiz.home") + "/" + this.catalinaRuntimeHome);
System.setProperty(Globals.CATALINA_BASE_PROP, System.getProperty(Globals.CATALINA_HOME_PROP));
// create the instance of embedded Tomcat
System.setProperty("catalina.useNaming", String.valueOf(useNaming));
tomcat = new Tomcat();
tomcat.setBaseDir(System.getProperty("ofbiz.home"));
// configure JNDI in the StandardServer
StandardServer server = (StandardServer) tomcat.getServer();
if (useNaming) {
tomcat.enableNaming();
}
try {
server.setGlobalNamingContext(new InitialContext());
} catch (NamingException e) {
throw new ContainerException(e);
}
// create the engine
List<ContainerConfig.Container.Property> engineProps = cc.getPropertiesWithValue("engine");
if (UtilValidate.isEmpty(engineProps)) {
throw new ContainerException("Cannot load CatalinaContainer; no engines defined.");
}
if (engineProps.size() > 1) {
throw new ContainerException("Cannot load CatalinaContainer; more than one engine configuration found; only one is supported.");
}
createEngine(engineProps.get(0));
// create the connectors
List<ContainerConfig.Container.Property> connectorProps = cc.getPropertiesWithValue("connector");
if (UtilValidate.isEmpty(connectorProps)) {
throw new ContainerException("Cannot load CatalinaContainer; no connectors defined!");
}
for (ContainerConfig.Container.Property connectorProp: connectorProps) {
createConnector(connectorProp);
}
}