核心是mysqldump和Runtime
操作其實(shí)并不是很困難,創(chuàng)建一個(gè)進(jìn)行備份操作的類,接收到備份調(diào)用后,標(biāo)記該表正在備份,然后創(chuàng)建一個(gè)子線程進(jìn)行備份操作。所需的配置信息是從配置文件讀取的,也要注意在Windows和linux下路徑問題。
配置文件如下:
Java代碼 收藏代碼
# 數(shù)據(jù)庫(kù)地址
dbAddress=localhost
# 要備份的數(shù)據(jù)庫(kù)名稱
databaseName=nms
# 數(shù)據(jù)庫(kù)用戶名
username = root
# 數(shù)據(jù)庫(kù)密碼
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//
執(zhí)行功能的代碼類如下:
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;
/**
* 用于數(shù)據(jù)庫(kù)備份操作
*/
public class DbBackUpMethod {
private static Log logger = LogFactory.getLog(DbBackUpMethod.class);
private static Properties pros = getPprVue("db.properties");
public static MapString, String> backUpTableList = new ConcurrentHashMapString, 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); // 標(biāo)記已經(jīng)用于備份
new Thread(new DbBackUpThread(tableName)).start();
}
/**
* 用于執(zhí)行某表的備份
*/
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(); // 該語(yǔ)句用于標(biāo)記,如果備份沒有完成,則該線程持續(xù)等待
} catch (Exception e) {
logger.error("備份操作出現(xiàn)問題", 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("無法讀取用于備份數(shù)據(jù)的配置文件", e);
}
return p;
}
}
在Action中,可以直接調(diào)用備份操作方法:
Java代碼 收藏代碼
DbBackUpMethod.getDbBackUpMethod().backup(tableName); // 調(diào)用備份
同時(shí),如果頁(yè)面有刪除該表的操作,在操作前應(yīng)該判斷該表是否在進(jìn)行備份
Java代碼 收藏代碼
if(null != DbBackUpMethod.backUpTableList.get(tableName))
然后頁(yè)面JSP調(diào)用時(shí),可以給予響應(yīng)的提示,我的判斷是只能刪除一張表:
function deleteTableByTableName(){
var pk = table.getSelectedKeys();
if(""==pk){
alert("請(qǐng)選擇一條記錄!");
return false;
}
if(pk.length > 1){
alert("請(qǐng)選擇一條記錄!");
return false;
}
var rows = table.get(pk);
var tableName=rows.tableName;
if(confirm("你確認(rèn)要?jiǎng)h除該表嗎?")) {
if(confirm("刪除該表前,你需要備份操作嗎?\n\n選擇備份后,系統(tǒng)將后臺(tái)進(jìn)行相關(guān)操作!\n在此期間,您不能刪除該表!\n備份操作可能將持續(xù)數(shù)小時(shí)時(shí)間!請(qǐng)知曉!")) {
document.form1.action="backUpTable.action?tableName=" + tableName;
document.form1.submit();
}else{
if(confirm("你確認(rèn)提交嗎?該表將刪除!")) {
document.form1.action="del.action?tableName=" + tableName;
document.form1.submit();
}
}
}
}
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
您可能感興趣的文章:- MySQL存儲(chǔ)表情時(shí)報(bào)錯(cuò):java.sql.SQLException: Incorrect string value:‘\xF0\x9F\x92\xA9\x0D\x0A...’的解決方法
- 利用java+mysql遞歸實(shí)現(xiàn)拼接樹形JSON列表的方法示例
- 讓Java后臺(tái)MySQL數(shù)據(jù)庫(kù)能夠支持emoji表情的方法
- Java數(shù)據(jù)類型與MySql數(shù)據(jù)類型對(duì)照表
- Java實(shí)現(xiàn)獲得MySQL數(shù)據(jù)庫(kù)中所有表的記錄總數(shù)可行方法
- 通過java備份恢復(fù)mysql數(shù)據(jù)庫(kù)的實(shí)現(xiàn)代碼
- Java連接mysql數(shù)據(jù)庫(kù)的詳細(xì)教程(推薦)
- mysql-connector-java.jar包的下載過程詳解
- 關(guān)于Java中的mysql時(shí)區(qū)問題詳解