|
@@ -7,6 +7,7 @@ import java.util.Map;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
import org.apache.commons.io.IOUtils;
|
|
|
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
|
|
+import org.apache.shiro.authz.annotation.RequiresRoles;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
import org.springframework.ui.ModelMap;
|
|
@@ -16,6 +17,10 @@ import org.springframework.web.bind.annotation.PathVariable;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
+import com.alibaba.druid.DbType;
|
|
|
+import com.alibaba.druid.sql.SQLUtils;
|
|
|
+import com.alibaba.druid.sql.ast.SQLStatement;
|
|
|
+import com.alibaba.druid.sql.dialect.mysql.ast.statement.MySqlCreateTableStatement;
|
|
|
import com.alibaba.fastjson.JSON;
|
|
|
import com.ruoyi.common.annotation.Log;
|
|
|
import com.ruoyi.common.core.controller.BaseController;
|
|
@@ -30,11 +35,6 @@ import com.ruoyi.generator.domain.GenTable;
|
|
|
import com.ruoyi.generator.domain.GenTableColumn;
|
|
|
import com.ruoyi.generator.service.IGenTableColumnService;
|
|
|
import com.ruoyi.generator.service.IGenTableService;
|
|
|
-import com.alibaba.druid.DbType;
|
|
|
-import com.alibaba.druid.sql.SQLUtils;
|
|
|
-import com.alibaba.druid.sql.ast.SQLStatement;
|
|
|
-import com.alibaba.druid.sql.dialect.mysql.ast.statement.MySqlCreateTableStatement;
|
|
|
-import com.alibaba.fastjson.JSON;
|
|
|
|
|
|
/**
|
|
|
* 代码生成 操作处理
|
|
@@ -114,10 +114,10 @@ public class GenController extends BaseController
|
|
|
/**
|
|
|
* 创建表结构
|
|
|
*/
|
|
|
-
|
|
|
@GetMapping("/createTable")
|
|
|
- public String createTable() {
|
|
|
- return prefix + "/createTable" ;
|
|
|
+ public String createTable()
|
|
|
+ {
|
|
|
+ return prefix + "/createTable";
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -132,7 +132,7 @@ public class GenController extends BaseController
|
|
|
String[] tableNames = Convert.toStrArray(tables);
|
|
|
// 查询表信息
|
|
|
List<GenTable> tableList = genTableService.selectDbTableListByNames(tableNames);
|
|
|
- String operName = (String) PermissionUtils.getPrincipalProperty("loginName");
|
|
|
+ String operName = Convert.toStr(PermissionUtils.getPrincipalProperty("loginName"));
|
|
|
genTableService.importGenTable(tableList, operName);
|
|
|
return AjaxResult.success();
|
|
|
}
|
|
@@ -189,29 +189,36 @@ public class GenController extends BaseController
|
|
|
return AjaxResult.success();
|
|
|
}
|
|
|
|
|
|
+ @RequiresRoles("admin")
|
|
|
@Log(title = "创建表", businessType = BusinessType.OTHER)
|
|
|
@PostMapping("/createTable")
|
|
|
@ResponseBody
|
|
|
- public AjaxResult create(String sql) {
|
|
|
+ public AjaxResult create(String sql)
|
|
|
+ {
|
|
|
List<SQLStatement> sqlStatements = SQLUtils.parseStatements(sql, DbType.mysql);
|
|
|
List<String> tableNames = new ArrayList<>();
|
|
|
- for (SQLStatement sqlStatement : sqlStatements) {
|
|
|
- if (sqlStatement instanceof MySqlCreateTableStatement) {
|
|
|
- MySqlCreateTableStatement sqlStatement1 = (MySqlCreateTableStatement) sqlStatement;
|
|
|
- String tableName = sqlStatement1.getTableName();
|
|
|
+ for (SQLStatement sqlStatement : sqlStatements)
|
|
|
+ {
|
|
|
+ if (sqlStatement instanceof MySqlCreateTableStatement)
|
|
|
+ {
|
|
|
+ MySqlCreateTableStatement createTableStatement = (MySqlCreateTableStatement) sqlStatement;
|
|
|
+ String tableName = createTableStatement.getTableName();
|
|
|
tableName = tableName.replaceAll("`", "");
|
|
|
|
|
|
- int msg = genTableService.createTable(sqlStatement1.toString());
|
|
|
- if (msg == 0) {
|
|
|
+ int msg = genTableService.createTable(createTableStatement.toString());
|
|
|
+ if (msg == 0)
|
|
|
+ {
|
|
|
tableNames.add(tableName);
|
|
|
}
|
|
|
- } else {
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
return AjaxResult.error("请输入建表语句");
|
|
|
}
|
|
|
}
|
|
|
- List<GenTable> tableList = genTableService.selectDbTableListByNames(
|
|
|
- (tableNames.toArray(new String[tableNames.size()])));
|
|
|
- genTableService.importGenTable(tableList, "admin");
|
|
|
+ List<GenTable> tableList = genTableService.selectDbTableListByNames((tableNames.toArray(new String[tableNames.size()])));
|
|
|
+ String operName = Convert.toStr(PermissionUtils.getPrincipalProperty("loginName"));
|
|
|
+ genTableService.importGenTable(tableList, operName);
|
|
|
return AjaxResult.success();
|
|
|
}
|
|
|
|