@Override
  protected void doPost(HttpServletRequest request, HttpServletResponse response)
      throws ServletException, IOException {
    String dbHost = request.getParameter("dbHost");
    String dbPort = request.getParameter("dbPort");
    String dbName = request.getParameter("dbName");
    String dbUser = request.getParameter("dbUser");
    String dbPassword = request.getParameter("dbPassword");

    String isCreateDb = request.getParameter("isCreateDb");
    String isCreateTable = request.getParameter("isCreateTable");
    String isInitData = request.getParameter("isInitData");
    String domain = request.getParameter("domain");
    String cxtPath = request.getParameter("cxtPath");
    String port = request.getParameter("port");

    String dbFileName = request.getParameter("dbFileName");
    String initFileName = request.getParameter("initFileName");
    String dbXmlFileName = "/WEB-INF/config/jdbc.properties";
    String webXmlFrom = "/install/config/web.xml";
    String webXmlTo = "/WEB-INF/web.xml";
    // 创建数据库
    try {
      if ("true".equals(isCreateDb)) {
        Install.createDb(dbHost, dbPort, dbName, dbUser, dbPassword);
      } else {
        Install.changeDbCharset(dbHost, dbPort, dbName, dbUser, dbPassword);
      }
      // 创建表
      if ("true".equals(isCreateTable)) {
        String sqlPath = getServletContext().getRealPath(dbFileName);
        List<String> sqlList = Install.readSql(sqlPath);
        Install.createTable(dbHost, dbPort, dbName, dbUser, dbPassword, sqlList);
      }
      // 初始化数据
      if ("true".equals(isInitData)) {
        String initPath = getServletContext().getRealPath(initFileName);
        List<String> initList = Install.readSql(initPath);
        Install.createTable(dbHost, dbPort, dbName, dbUser, dbPassword, initList);
      }
      // 更新配置
      Install.updateConfig(dbHost, dbPort, dbName, dbUser, dbPassword, domain, cxtPath, port);
      // 处理数据库配置文件
      String dbXmlPath = getServletContext().getRealPath(dbXmlFileName);
      Install.dbXml(dbXmlPath, dbHost, dbPort, dbName, dbUser, dbPassword);
      // 处理web.xml
      String webXmlFromPath = getServletContext().getRealPath(webXmlFrom);
      String webXmlToPath = getServletContext().getRealPath(webXmlTo);
      Install.webXml(webXmlFromPath, webXmlToPath);
    } catch (Exception e) {
      throw new ServletException("install failed!", e);
    }
    RequestDispatcher dispatcher = request.getRequestDispatcher("/install/install_setup.jsp");
    dispatcher.forward(request, response);
  }
Exemplo n.º 2
0
  @Override
  protected void doPost(HttpServletRequest request, HttpServletResponse response)
      throws ServletException, IOException {
    String dbHost = request.getParameter("dbHost");
    String dbPort = request.getParameter("dbPort");
    String dbName = request.getParameter("dbName");
    String dbUser = request.getParameter("dbUser");
    String dbPassword = request.getParameter("dbPassword");

    String domain = request.getParameter("domain");
    String cxtPath = request.getParameter("cxtPath");
    String port = request.getParameter("port");

    String dbFileName = request.getParameter("dbFileName");
    String dbXmlFileName = "/WEB-INF/config/jdbc.properties";
    String webXmlFrom = "/update/config/web.xml";
    String webXmlTo = "/WEB-INF/web.xml";
    try {
      // 创建表
      String sqlPath = getServletContext().getRealPath(dbFileName);
      List<String> sqlList = Install.readSql(sqlPath);
      Install.createTable(dbHost, dbPort, dbName, dbUser, dbPassword, sqlList);
      // 更新配置
      Install.updateConfig(dbHost, dbPort, dbName, dbUser, dbPassword, domain, cxtPath, port);
      // 处理数据库配置文件
      String dbXmlPath = getServletContext().getRealPath(dbXmlFileName);
      Install.dbXml(dbXmlPath, dbHost, dbPort, dbName, dbUser, dbPassword);
      // 处理web.xml
      String webXmlFromPath = getServletContext().getRealPath(webXmlFrom);
      String webXmlToPath = getServletContext().getRealPath(webXmlTo);
      Install.webXml(webXmlFromPath, webXmlToPath);
    } catch (Exception e) {
      throw new ServletException("update failed!", e);
    }
    RequestDispatcher dispatcher = request.getRequestDispatcher("/update/update_setup.jsp");
    dispatcher.forward(request, response);
  }
Exemplo n.º 3
0
  @Override
  protected void doPost(HttpServletRequest request, HttpServletResponse response)
      throws ServletException, IOException {
    // String dbHost = request.getHeader("BaeEnv.BAE_ENV_ADDR_SQL_IP");
    // String dbPort = request.getHeader("BaeEnv.BAE_ENV_ADDR_SQL_PORT");
    String dbHost = "sqld.duapp.com";
    String dbPort = "4050";
    String dbName = "GejwcSiuDbGfAVCrCopl";
    String dbUser = "******";
    String dbPassword = "******";

    String isCreateDb = request.getParameter("isCreateDb");
    String isCreateTable = request.getParameter("isCreateTable");
    String isInitData = request.getParameter("isInitData");
    String domain = request.getParameter("domain");
    String cxtPath = request.getParameter("cxtPath");
    String port = request.getParameter("port");

    String dbFileName = request.getParameter("dbFileName");
    String initFileName = request.getParameter("initFileName");
    String dbXmlFileName = "/WEB-INF/config/jdbc.properties";
    String webXmlFrom = "/install/config/web.xml";
    String webXmlTo = "/WEB-INF/web.xml";
    String install = "/install";
    // 创建数据库
    try {
      //			if ("true".equals(isCreateDb)) {
      //				Install.createDb(dbHost, dbPort, dbName, dbUser, dbPassword);
      //			} else {
      //				Install.changeDbCharset(dbHost, dbPort, dbName, dbUser,
      //						dbPassword);
      //			}
      // 创建表
      if ("true".equals(isCreateTable)) {
        String sqlPath = getServletContext().getRealPath(dbFileName);
        List<String> sqlList = Install.readSql(sqlPath);
        Install.createTable(dbHost, dbPort, dbName, dbUser, dbPassword, sqlList);
      }
      // 初始化数据
      if ("true".equals(isInitData)) {
        String initPath = getServletContext().getRealPath(initFileName);
        List<String> initList = Install.readSql(initPath);
        Install.createTable(dbHost, dbPort, dbName, dbUser, dbPassword, initList);
      }
      // 更新配置
      Install.updateConfig(dbHost, dbPort, dbName, dbUser, dbPassword, domain, cxtPath, port);
      // 处理数据库配置文件
      String dbXmlPath = getServletContext().getRealPath(dbXmlFileName);
      Install.dbXml(dbXmlPath, dbHost, dbPort, dbName, dbUser, dbPassword);
      // 处理web.xml
      String webXmlFromPath = getServletContext().getRealPath(webXmlFrom);
      String webXmlToPath = getServletContext().getRealPath(webXmlTo);
      Install.webXml(webXmlFromPath, webXmlToPath);
      // 处理安装程序目录
      File installDirectory = new File(getServletContext().getRealPath(install));
      FileUtils.deleteDirectory(installDirectory);
    } catch (Exception e) {
      throw new ServletException("install failed!", e);
    }
    RequestDispatcher dispatcher = request.getRequestDispatcher("/install_setup.html");
    dispatcher.forward(request, response);
  }