Examples of PropertiesHelper


Examples of org.g4studio.core.properties.PropertiesHelper

    String ctxPath = request.getContextPath();
    String requestUri = request.getRequestURI();
    String uri = requestUri.substring(ctxPath.length());
    UserInfoVo userInfo = WebUtils.getSessionContainer(request).getUserInfo();
    BigDecimal costTime = null;
    PropertiesHelper pHelper = PropertiesFactory.getPropertiesHelper(PropertiesFile.G4);
    String eventMonitorEnabel = pHelper.getValue("requestMonitor", "1");
    String isAjax = request.getHeader("x-requested-with");
    if (G4Utils.isEmpty(userInfo) && !uri.equals("/login.do") && enabled) {
      if (G4Utils.isEmpty(isAjax)) {
        response.getWriter().write(
            "<script type=\"text/javascript\">parent.location.href='" + ctxPath
View Full Code Here

Examples of org.g4studio.core.properties.PropertiesHelper

* @author XiongChun
* @since 2009-01-13
*/
public class StartUp {
  public static void main(String[] args) {
    PropertiesHelper pHelper = PropertiesFactory.getPropertiesHelper(PropertiesFile.G4SERVER);
    G4Server server = new G4Server(
        pHelper.getValue("g4server.WebContext"),
        new Integer(pHelper.getValue("g4server.WebPort"))
        );
    try {
      server.start();
    } catch (Exception e) {
      e.printStackTrace();
View Full Code Here

Examples of org.g4studio.core.properties.PropertiesHelper

    setWebContext(pWebContext);
    setPort(pPort);
  }

  public void start() throws Exception {
      PropertiesHelper pHelper = PropertiesFactory.getPropertiesHelper(PropertiesFile.G4);
      String forceLoad = pHelper.getValue("forceLoad", SystemConstants.FORCELOAD_N);
    /**
     * 强制改变加载顺序
     * 解决直接使用iBatis源码带来的初始化Spring容器报错的问题
     */
      if(forceLoad.equals(SystemConstants.FORCELOAD_Y)){
View Full Code Here

Examples of org.g4studio.core.properties.PropertiesHelper

   * @throws SQLException
   *             - if the update fails
   */
  public int executeUpdate(StatementScope statementScope, Connection conn, String sql, Object[] parameters)
      throws SQLException {
    PropertiesHelper pHelper = PropertiesFactory.getPropertiesHelper(PropertiesFile.G4);
    // 获取监控开关参数
    String jdbcMonitor = pHelper.getValue("jdbcMonitor", "0");
    boolean flag = jdbcMonitor.equalsIgnoreCase("1") ? true : false;
    ErrorContext errorContext = statementScope.getErrorContext();
    errorContext.setActivity("executing update");
    errorContext.setObjectId(sql);
    PreparedStatement ps = null;
View Full Code Here

Examples of org.g4studio.core.properties.PropertiesHelper

   * @throws SQLException
   *             - if the query fails
   */
  public void executeQuery(StatementScope statementScope, Connection conn, String sql, Object[] parameters,
      int skipResults, int maxResults, RowHandlerCallback callback) throws SQLException {
    PropertiesHelper pHelper = PropertiesFactory.getPropertiesHelper(PropertiesFile.G4);
    String jdbcMonitor = pHelper.getValue("jdbcMonitor", "0");
    String dbString = "";
    boolean flag = jdbcMonitor.equalsIgnoreCase("1") ? true : false;
    ErrorContext errorContext = statementScope.getErrorContext();
    errorContext.setActivity("executing query");
    errorContext.setObjectId(sql);
View Full Code Here

Examples of org.g4studio.core.properties.PropertiesHelper

  /**
   * 应用平台启动
   */
  private void systemStartup(ServletContext servletContext) {
    PropertiesHelper pHelper = PropertiesFactory.getPropertiesHelper(PropertiesFile.G4);
    String forceLoad = pHelper.getValue("forceLoad", SystemConstants.FORCELOAD_N);
    long start = System.currentTimeMillis();
    if (forceLoad.equalsIgnoreCase(SystemConstants.FORCELOAD_N)) {
      log.info("*******************************************************");
      log.info("G4Studio行业应用二次快速开发平台->开始启动...");
      log.info("*******************************************************");
 
View Full Code Here

Examples of org.g4studio.core.properties.PropertiesHelper

   *
   * @param jp
   * @param ex
   */
  public synchronized void interceptException(JoinPoint jp, Throwable ex) {
    PropertiesHelper g4PHelper = PropertiesFactory.getPropertiesHelper(PropertiesFile.G4);
    String exceptionMonitor = g4PHelper.getValue("exceptionMonitor");
    if (exceptionMonitor.equals("0")) {
      return;
    }
    String clazzString = jp.getTarget().getClass().getName();
    String methodName = jp.getSignature().getName();
View Full Code Here

Examples of org.g4studio.core.properties.PropertiesHelper

  /**
   * 初始化ApplicationContext对象
   * @throws Exception
   */
  private static void initApplicationContext() throws Exception {
      PropertiesHelper pHelper = PropertiesFactory.getPropertiesHelper(PropertiesFile.G4);
      String forceLoad = pHelper.getValue("forceLoad", SystemConstants.FORCELOAD_N);
    try {
      if (forceLoad.equalsIgnoreCase(SystemConstants.FORCELOAD_N)) {
        log.info("系统正在初始化Spring...");
      }
      applicationContext = new ClassPathXmlApplicationContext(new String[] { "config\\global.config.xml" });
View Full Code Here

Examples of org.g4studio.core.properties.PropertiesHelper

    HttpServletRequest request = (HttpServletRequest)pageContext.getRequest();
    UserInfoVo userInfo = WebUtils.getSessionContainer(request).getUserInfo();
    String contextPath = request.getContextPath();
    request.setAttribute("webContext", contextPath);
    Dto dto = new BaseDto();
    PropertiesHelper pHelper = PropertiesFactory.getPropertiesHelper(PropertiesFile.G4);
    String micolor = pHelper.getValue("micolor", "blue");
    dto.put("micolor", micolor);
    String urlSecurity = pHelper.getValue("urlSecurity", "1");
    dto.put("urlSecurity", urlSecurity);
    dto.put("urlSecurity2", urlSecurity2);
    dto.put("userInfo", userInfo);
    dto.put("ajaxErrCode", G4Constants.Ajax_Timeout);
    dto.put("requestURL", request.getRequestURL());
    dto.put("contextPath", contextPath);
    dto.put("doctypeEnable", doctypeEnable);
    dto.put("extDisabled", G4Utils.isEmpty(extDisabled) ? "false" : extDisabled);
    dto.put("title", G4Utils.isEmpty(title) ? "G4Studio" : title);
    dto.put("jqueryEnabled", G4Utils.isEmpty(jqueryEnabled) ? "false" : jqueryEnabled);
    dto.put("showLoading", G4Utils.isEmpty(showLoading) ? "true" : showLoading);
    dto.put("uxEnabled", uxEnabled);
    dto.put("exportExceptionWindow", exportExceptionWindow);
    dto.put("fcfEnabled", fcfEnabled);
    dto.put("exportParams", exportParams);
    dto.put("exportUserinfo", exportUserinfo);
    dto.put("isSubPage", isSubPage);
    dto.put("pageLoadMsg", WebUtils.getParamValue("PAGE_LOAD_MSG", request));
    String titleIcon = WebUtils.getParamValue("TITLE_ICON", request);
    dto.put("titleIcon", G4Utils.isEmpty(titleIcon) ? "G4Studio.ico" : titleIcon);
    if (exportParams.equals("true")) {
      dto.put("paramList", WebUtils.getParamList(request));
    }
    //String agent = request.getHeader("user-agent");
    //dto.put("firefox", agent.indexOf("Firefox") == -1 ? "false" : "true");
    PropertiesHelper p = PropertiesFactory.getPropertiesHelper(PropertiesFile.G4);
    dto.put("extMode", p.getValue("extMode", TagConstant.Ext_Mode_Run));
    dto.put("runMode", p.getValue("runMode", TagConstant.RUN_MODE_NORMAL));
    Dto themeDto = new BaseDto();
    Dto resultDto = new BaseDto();
    if(G4Utils.isNotEmpty(userInfo)){
      themeDto.put("userid", userInfo.getUserid());
      resultDto = armTagSupportService.getEauserSubInfo(themeDto);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.