您好,登錄后才能下訂單哦!
MySQL基于java實現備份表的方法?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
配置文件如下:
Java代碼 收藏代碼
# 數據庫地址
dbAddress=localhost
# 要備份的數據庫名稱
databaseName=nms
# 數據庫用戶名
username = root
# 數據庫密碼
password = root
# mysqldump 路徑 Linux
mysqlpath = /usr/bin/
# 備份文件存放位置 Linux
sqlFilePath =/MySQlBack/
# mysqldump 路徑 Windows
#mysqlpath = C\://Program Files//MySQL//MySQL Server 5.5//bin//
# 備份文件存放位置 Windows
#sqlFilePath =C\://MySQl//
執行功能的代碼類如下:
Java代碼 收藏代碼
package com.nms.common.db;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.util.Map;
import java.util.Properties;
import java.util.concurrent.ConcurrentHashMap;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
/**
* 用于數據庫備份操作
*/
public class DbBackUpMethod {
private static Log logger = LogFactory.getLog(DbBackUpMethod.class);
private static Properties pros = getPprVue("db.properties");
public static Map<String, String> backUpTableList = new ConcurrentHashMap<String, String>();
private static DbBackUpMethod backObj = new DbBackUpMethod();
public static DbBackUpMethod getDbBackUpMethod(){
return backObj;
}
public void backup(String tableName) {
if(null != backUpTableList.get(tableName)) return ;
backUpTableList.put(tableName, tableName); // 標記已經用于備份
new Thread(new DbBackUpThread(tableName)).start();
}
/**
* 用于執行某表的備份
*/
class DbBackUpThread implements Runnable {
String tableName = null;
public DbBackUpThread(String tableName){
this.tableName = tableName;
}
@Override
public void run() {
try {
String username = pros.getProperty("username");
String password = pros.getProperty("password");
String mysqlpaths = pros.getProperty("mysqlpath");
String address = pros.getProperty("dbAddress");
String databaseName = pros.getProperty("databaseName");
String sqlpath = pros.getProperty("sqlFilePath");
File backupath = new File(sqlpath);
if (!backupath.exists()) {
backupath.mkdir();
}
StringBuffer sb = new StringBuffer();
sb.append(mysqlpaths);
sb.append("mysqldump ");
sb.append("--opt ");
sb.append("-h ");
sb.append(address);
sb.append(" ");
sb.append("--user=");
sb.append(username);
sb.append(" ");
sb.append("--password=");
sb.append(password);
sb.append(" ");
sb.append("--lock-all-tables=true ");
sb.append("--result-file=");
sb.append(sqlpath);
sb.append(tableName+".sql");
sb.append(" ");
sb.append("--default-character-set=utf8 ");
sb.append(databaseName);
sb.append(" ");
sb.append(tableName);
Runtime cmd = Runtime.getRuntime();
Process p = cmd.exec(sb.toString());
p.waitFor(); // 該語句用于標記,如果備份沒有完成,則該線程持續等待
} catch (Exception e) {
logger.error("備份操作出現問題", e);
}finally{
backUpTableList.remove(tableName); // 最終都將解除
}
}
}
public static Properties getPprVue(String properName) {
InputStream inputStream = DbBackUpMethod.class.getClassLoader().getResourceAsStream(properName);
Properties p = new Properties();
try {
p.load(inputStream);
inputStream.close();
} catch (IOException e) {
logger.error("無法讀取用于備份數據的配置文件", e);
}
return p;
}
}
在Action中,可以直接調用備份操作方法:
Java代碼 收藏代碼
DbBackUpMethod.getDbBackUpMethod().backup(tableName); // 調用備份
同時,如果頁面有刪除該表的操作,在操作前應該判斷該表是否在進行備份
Java代碼 收藏代碼
if(null != DbBackUpMethod.backUpTableList.get(tableName))
然后頁面JSP調用時,可以給予響應的提示,我的判斷是只能刪除一張表:
function deleteTableByTableName(){ var pk = table.getSelectedKeys(); if(""==pk){ alert("請選擇一條記錄!"); return false; } if(pk.length > 1){ alert("請選擇一條記錄!"); return false; } var rows = table.get(pk); var tableName=rows.tableName; if(confirm("你確認要刪除該表嗎?")) { if(confirm("刪除該表前,你需要備份操作嗎?\n\n選擇備份后,系統將后臺進行相關操作!\n在此期間,您不能刪除該表!\n備份操作可能將持續數小時時間!請知曉!")) { document.form1.action="backUpTable.action?tableName=" + tableName; document.form1.submit(); }else{ if(confirm("你確認提交嗎?該表將刪除!")) { document.form1.action="del.action?tableName=" + tableName; document.form1.submit(); } } } }
看完上述內容,你們掌握MySQL基于java實現備份表的方法的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。