Java tutorial
/* * Copyright 2007-2009 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package net.paoding.rose.web.var; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.util.Properties; import javax.servlet.ServletContext; import org.springframework.web.context.WebApplicationContext; import org.springframework.web.context.support.WebApplicationContextUtils; /** * ??Rose?. * * @author [qieqie.wang@gmail.com] */ public final class PrivateVar { // ?ServletContextRoseFilter?servletContext(ServlerContext)? // private static ServletContext servletContext; // --------------------------------------------------------------- /** * ??WebSpring. * <p> * Spring??module. * * */ public static WebApplicationContext getRootWebApplicationContext(ServletContext servletContext) { return WebApplicationContextUtils.getWebApplicationContext(servletContext); } /** * ?? */ private PrivateVar() { throw new AssertionError(); } private static Properties roseProperties; public static String getProperty(ServletContext servletContext, String name) { return getProperty(servletContext, name, null); } /** * * @param name * */ public static String getProperty(ServletContext servletContext, String name, String def) { if (roseProperties == null) { String rosePropertiesPath = "rose.properties"; if (servletContext != null) { rosePropertiesPath = "/WEB-INF/rose.properties"; } Properties roseProperties = new Properties(); File file = new File(servletContext.getRealPath(rosePropertiesPath)); if (file.exists()) { InputStream in = null; try { in = new FileInputStream(file); roseProperties.load(in); } catch (IOException e) { throw new IllegalArgumentException(rosePropertiesPath, e); } finally { if (in != null) { try { in.close(); } catch (IOException e) { // TODO Auto-generated catch block } } } PrivateVar.roseProperties = roseProperties; } else { PrivateVar.roseProperties = new Properties(); } } return roseProperties.getProperty(name, def); } }