zip包,然后自動(dòng)下載下來(lái)
定襄網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián)公司,定襄網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為定襄上1000家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)營(yíng)銷網(wǎng)站建設(shè)要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的定襄做網(wǎng)站的公司定做!
1.預(yù)先定義好模板
2.界面輸入相關(guān)參數(shù)
3.解析模板生成代碼并下載
最后放出源代碼:
package com.et.controller.system.createcode;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpServletResponse;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import com.et.controller.base.BaseController;
import com.et.util.DelAllFile;
import com.et.util.FileDownload;
import com.et.util.FileZip;
import com.et.util.Freemarker;
import com.et.util.PageData;
import com.et.util.PathUtil;
/**
* 類名稱:FreemarkerController
* 創(chuàng)建人:Harries
* 創(chuàng)建時(shí)間:2015年1月12日
* @version
*/
@Controller
@RequestMapping(value=”/createCode”)
public class CreateCodeController extends BaseController {
/**
* 生成代碼
*/
@RequestMapping(value=”/proCode”)
public void proCode(HttpServletResponse response) throws Exception{
PageData pd = new PageData();
pd = this.getPageData();
/* ============================================================================================= */
String packageName = pd.getString(“packageName”); //包名 ========1
String objectName = pd.getString(“objectName”); //類名 ========2
String tabletop = pd.getString(“tabletop”); //表前綴 ========3
tabletop = null == tabletop?””:tabletop.toUpperCase(); //表前綴轉(zhuǎn)大寫(xiě)
String zindext = pd.getString(“zindex”); //屬性總數(shù)
int zindex = 0;
if(null != zindext !””.equals(zindext)){
zindex = Integer.parseInt(zindext);
}
ListString[] fieldList = new ArrayListString[](); //屬性集合 ========4
for(int i=0; i zindex; i++){
fieldList.add(pd.getString(“field”+i).split(“,fh,”)); //屬性放到集合里面
}
MapString,Object root = new HashMapString,Object(); //創(chuàng)建數(shù)據(jù)模型
root.put(“fieldList”, fieldList);
root.put(“packageName”, packageName); //包名
root.put(“objectName”, objectName); //類名
root.put(“objectNameLower”, objectName.toLowerCase()); //類名(全小寫(xiě))
root.put(“objectNameUpper”, objectName.toUpperCase()); //類名(全大寫(xiě))
root.put(“tabletop”, tabletop); //表前綴
root.put(“nowDate”, new Date()); //當(dāng)前日期
DelAllFile.delFolder(PathUtil.getClasspath()+”admin/ftl”); //生成代碼前,先清空之前生成的代碼
/* ============================================================================================= */
String filePath = “admin/ftl/code/”; //存放路徑
String ftlPath = “createCode”; //ftl路徑
/*生成controller*/
Freemarker.printFile(“controllerTemplate.ftl”, root, “controller/”+packageName+”/”+objectName.toLowerCase()+”/”+objectName+”Controller.java”, filePath, ftlPath);
/*生成service*/
Freemarker.printFile(“serviceTemplate.ftl”, root, “service/”+packageName+”/”+objectName.toLowerCase()+”/”+objectName+”Service.java”, filePath, ftlPath);
/*生成mybatis xml*/
Freemarker.printFile(“mapperMysqlTemplate.ftl”, root, “mybatis_mysql/”+packageName+”/”+objectName+”Mapper.xml”, filePath, ftlPath);
Freemarker.printFile(“mapperOracleTemplate.ftl”, root, “mybatis_oracle/”+packageName+”/”+objectName+”Mapper.xml”, filePath, ftlPath);
/*生成SQL腳本*/
Freemarker.printFile(“mysql_SQL_Template.ftl”, root, “mysql數(shù)據(jù)庫(kù)腳本/”+tabletop+objectName.toUpperCase()+”.sql”, filePath, ftlPath);
Freemarker.printFile(“oracle_SQL_Template.ftl”, root, “oracle數(shù)據(jù)庫(kù)腳本/”+tabletop+objectName.toUpperCase()+”.sql”, filePath, ftlPath);
/*生成jsp頁(yè)面*/
Freemarker.printFile(“jsp_list_Template.ftl”, root, “jsp/”+packageName+”/”+objectName.toLowerCase()+”/”+objectName.toLowerCase()+”_list.jsp”, filePath, ftlPath);
Freemarker.printFile(“jsp_edit_Template.ftl”, root, “jsp/”+packageName+”/”+objectName.toLowerCase()+”/”+objectName.toLowerCase()+”_edit.jsp”, filePath, ftlPath);
/*生成說(shuō)明文檔*/
Freemarker.printFile(“docTemplate.ftl”, root, “說(shuō)明.doc”, filePath, ftlPath);
//this.print(“oracle_SQL_Template.ftl”, root); 控制臺(tái)打印
/*生成的全部代碼壓縮成zip文件*/
FileZip.zip(PathUtil.getClasspath()+”admin/ftl/code”, PathUtil.getClasspath()+”admin/ftl/code.zip”);
/*下載代碼*/
FileDownload.fileDownload(response, PathUtil.getClasspath()+”admin/ftl/code.zip”, “code.zip”);
}
}
按照我的理解,可以的,代碼生成器是跨平臺(tái),而且是跨語(yǔ)言的(至少是跨文本語(yǔ)言的,UML暫時(shí)不好說(shuō),)。
代碼生成器作為一種開(kāi)發(fā)工具,一般不直接作為程序的一部分,通常也不直接或間接(如通過(guò)AOP)被程序調(diào)用,他是通過(guò)編程的方式生成所需要的代碼,然后將生成的代碼作為源文件,復(fù)制到開(kāi)發(fā)工具的代碼區(qū),然后進(jìn)行編譯。由于代碼生成器是在編譯之前運(yùn)行的,因此它可以跨語(yǔ)言,你不但可以用代碼生成器生成高級(jí)語(yǔ)言,也可以生成匯編語(yǔ)言,甚至機(jī)器碼(0、1代碼)。
但編寫(xiě)代碼生成器是一個(gè)難點(diǎn),它需要你了解目標(biāo)編程語(yǔ)言的語(yǔ)法。如果別人已經(jīng)把你需要的代碼生成器寫(xiě)好了,你只需按要求使用即可,此時(shí)就不需要了解目標(biāo)編程語(yǔ)言的語(yǔ)法。
JNI是通過(guò)Java調(diào)用C語(yǔ)言(或其他語(yǔ)言,一般是C),它的實(shí)現(xiàn)機(jī)制與代碼生成器不同(JNI是通過(guò)代碼調(diào)用實(shí)現(xiàn)功能,而代碼生成器是生成代碼,復(fù)制代碼進(jìn)行使用),由于C是底層語(yǔ)言,一些底層操作單靠Java無(wú)法實(shí)現(xiàn),所以才需要JNI。
以上是我對(duì)代碼生成器的個(gè)人理解,雖然提問(wèn)時(shí)間已過(guò)了很久,但依然希望能對(duì)你及其他網(wǎng)友有所幫助。
import?java.util.HashMap;
import?java.security.KeyException;
import?java.sql.Connection;
import?java.sql.PreparedStatement;
import?java.sql.ResultSet;
import?java.sql.SQLException;
/**
*?類codeKey/code是一個(gè)數(shù)據(jù)庫(kù)主鍵生成器,用序列號(hào)的方式來(lái)產(chǎn)生數(shù)據(jù)庫(kù)中需要的主鍵值。
*?p
*?codeKey/code目前支持的數(shù)據(jù)庫(kù)包括Oracle的所有版本、MySql的3.x以上的版本
*?以及所有支持max()函數(shù)的數(shù)據(jù)庫(kù),支持字段類型僅為數(shù)字類型的主鍵,對(duì)于字符及其它類型的主鍵尚不提供支持。
*?p
*?在使用時(shí)只需提供表名、字段名(主鍵)以及到數(shù)據(jù)庫(kù)的JDBC連接,如果想要獲得message表的id字段的下一個(gè)?主鍵值時(shí):
*?p
*?blockquote
*?
*?pre
*?????java.sql.Connection?conn?=?...;
*?????org.shaoye.common.sql.Key?key?=?org.shaoye.common.sql.Key.getInstance();
*?????int?keyValue?=?key.getNextKey("message",?"id",?conn);
*?????String?sql?=?"insert?into?message?(id,...)?values?("?+?keyValue?+?",...)";
*?????//執(zhí)行插入操作...
*?/pre
*?
*?/blockquote
*?p
*?
*?@author?令少爺(shaoye@vip.sina.com)
*?@since?magic?0.1
*/
public?final?class?Key?{
/**
?*?key的最大值,默認(rèn)為9223372036854775807,即long類型的最大值
?*/
private?long?max?=?9223372036854775807L;
/**
?*?key的最小值,默認(rèn)為1
?*?*/
private?long?min?=?1L;
/**
?*?Key的唯一實(shí)例,通過(guò)getInstance()方法獲得
?*?*/
private?static?Key?keygen?=?new?Key();
/**
?*?KeyInfo類的實(shí)例列表,默認(rèn)容量為5個(gè)
?*?*/
private?HashMapString,?KeyInfo?keyList?=?new?HashMapString,?KeyInfo(5);?//?keyInfo
//?列表
/**
?*?私有的默認(rèn)構(gòu)造方法,防止外部構(gòu)造類的實(shí)例
?*?*/
private?Key()?{
}
/**
?*?獲得Key的唯一實(shí)例
?*?*/
public?static?Key?getInstance()?{
return?keygen;
}
/**
?*?用指定的表和字段獲得key的下一個(gè)值,主鍵的值不得超過(guò)2147483647
?*?
?*?@param?tableName
?*????????????數(shù)據(jù)庫(kù)中的表名,表中必須有一個(gè)數(shù)字主鍵
?*?@param?keyName
?*????????????表(tableName)中的字段名
?*?@param?conn
?*????????????JDBC連接,如果欲獲得的key是第一次取值,則必須保證conn能連接到數(shù)據(jù)庫(kù)
?*?@return?key的下一個(gè)主鍵的int值
?*?@throws?codeKeyException/code
?*?????????如果表名或字段名不存在、訪問(wèn)數(shù)據(jù)庫(kù)錯(cuò)誤或key的值大于2147483647時(shí)拋出
?*/
public?int?getNextKey(String?tableName,?String?keyName,?Connection?conn)
throws?KeyException?{
long?value?=?getNextKeyLong(tableName,?keyName,?conn);
if?(value??2147483647L)?{
throw?new?KeyException(
"Key's?value?too?big,please?call?getNextKeyLong?method!");
}
return?(new?Long(value)).intValue();
}
/**
?*?用指定的表和字段獲得key的下一個(gè)值,最大為9223372036854775807
?*?@param?tableName?數(shù)據(jù)庫(kù)中的表名,表中必須有一個(gè)數(shù)字主鍵
?*?@param?keyName?表(tableName)中的字段名
?*?@param?conn?JDBC連接,如果欲獲得的key是第一次取值,則必須保證conn能連接到數(shù)據(jù)庫(kù)
?*?@return?key的下一個(gè)主鍵的long值
?*?@throws?codeKeyException/code?如果表名或字段名不存在或訪問(wèn)數(shù)據(jù)庫(kù)錯(cuò)誤時(shí)拋出
?*/
public?long?getNextKeyLong(String?tableName,?String?keyName,?Connection?conn)
throws?KeyException?{
KeyInfo?keyinfo;
String?item?=?tableName?+?"."?+?keyName;
try?{
if?(keyList.containsKey(item))?{
keyinfo?=?(KeyInfo)?keyList.get(item);
}?else?{
keyinfo?=?new?KeyInfo(tableName,?keyName,?conn);
keyList.put(item,?keyinfo);
}
return?keyinfo.getNextKey();
}?catch?(SQLException?sqle)?{
throw?new?KeyException(sqle);
}
}
/**
?*?用指定的"表code./code字段"形式的字符串獲得key的下一個(gè)值,主鍵的值不得超過(guò)2147483647
?*?@param?tableDotField?"表.字段"形式的字符串,如:message.id
?*?@param?conn?JDBC連接,如果欲獲得的key是第一次取值,則必須保證conn能連接到數(shù)據(jù)庫(kù)
?*?@return?key的下一個(gè)主鍵的int值
?*?@throws?codeKeyException/code?如果表名或字段名不存在、訪問(wèn)數(shù)據(jù)庫(kù)錯(cuò)誤或key的值?大于2147483647時(shí)拋出
?*/
public?int?getNextKey(String?tableDotField,?Connection?conn)
throws?KeyException?{
long?value?=?getNextKeyLong(tableDotField,?conn);
if?(value??2147483647L)?{
throw?new?KeyException(
"Key's?value?too?big,please?call?getNextKeyLong?method!");
}
return?(new?Long(value)).intValue();
}
/**
?*?用指定的"表code./code字段"形式的字符串獲得key的下一個(gè)值,最大為9223372036854775807
?*?@param?tableDotField?"表.字段"形式的字符串,如:message.id
?*?@param?conn?JDBC連接,如果欲獲得的key是第一次取值,則必須保證conn能連接到數(shù)據(jù)庫(kù)
?*?@return?key的下一個(gè)主鍵的int值
?*?@throws?codeKeyException/code?如果表名或字段名不存在或訪問(wèn)數(shù)據(jù)庫(kù)錯(cuò)誤時(shí)拋出
?*/
public?long?getNextKeyLong(String?tableDotField,?Connection?conn)
throws?KeyException?{
int?dot_index?=?tableDotField.indexOf(".");
if?(tableDotField.indexOf(".")??1)?{
throw?new?KeyException("Unknown?Key?'"?+?tableDotField?+?"'!");
}
String?tab?=?tableDotField.substring(0,?dot_index);
String?key?=?tableDotField.substring(dot_index);
return?getNextKeyLong(tab,?key,?conn);
}
/**
?*?用指定的表和字段獲得key的當(dāng)前值,主鍵的值不得超過(guò)2147483647
?*?@param?tableName?數(shù)據(jù)庫(kù)中的表名,表中必須有一個(gè)數(shù)字主鍵
?*?@param?keyName?表(tableName)中的字段名
?*?@param?conn?JDBC連接,如果欲獲得的key是第一次取值,則必須保證conn能連接到數(shù)據(jù)庫(kù)
?*?@return?key的當(dāng)前int值
?*?@throws?codeKeyException/code
?*?????????如果表名或字段名不存在、訪問(wèn)數(shù)據(jù)庫(kù)錯(cuò)誤或key的值大于2147483647時(shí)拋出
?*/
public?int?getCurrentKey(String?tableName,?String?keyName,?Connection?conn)
throws?KeyException?{
long?value?=?getCurrentKeyLong(tableName,?keyName,?conn);
if?(value??2147483647L)?{
throw?new?KeyException(
"Key's?value?too?big,please?call?getCurrentKeyLong?method!");
}
return?(new?Long(value)).intValue();
}
/**
?*?用指定的表和字段獲得key的當(dāng)前值,最大為9223372036854775807
?*?
?*?@param?tableName
?*????????????數(shù)據(jù)庫(kù)中的表名,表中必須有一個(gè)數(shù)字主鍵
?*?@param?keyName
?*????????????表(tableName)中的字段名
?*?@param?conn
?*????????????JDBC連接,如果欲獲得的key是第一次取值,則必須保證conn能連接到數(shù)據(jù)庫(kù)
?*?@return?key的當(dāng)前l(fā)ong值
?*?@throws?codeKeyException/code?如果表名或字段名不存在或訪問(wèn)數(shù)據(jù)庫(kù)錯(cuò)誤時(shí)拋出
?*/
public?long?getCurrentKeyLong(String?tableName,?String?keyName,
Connection?conn)?throws?KeyException?{
KeyInfo?keyinfo;
String?item?=?tableName?+?"."?+?keyName;
try?{
synchronized?(keyList)?{
if?(keyList.containsKey(item))?{
keyinfo?=?(KeyInfo)?keyList.get(item);
}?else?{
keyinfo?=?new?KeyInfo(tableName,?keyName,?conn);
keyList.put(item,?keyinfo);
}
}
return?keyinfo.getCurrentKey();
}?catch?(SQLException?sqle)?{
throw?new?KeyException(sqle);
}
}
/**
?*?用指定的"表code./code字段"形式的字符串獲得key的當(dāng)前值,主鍵的值不得超過(guò)2147483647
?*?
?*?@param?tableDotField
?*????????????"表.字段"形式的字符串,如:message.id
?*?@param?conn
?*????????????JDBC連接,如果欲獲得的key是第一次取值,則必須保證conn能連接到數(shù)據(jù)庫(kù)
?*?@return?key的當(dāng)前int值
?*?@throws?codeKeyException/code?如果表名或字段名不存在、訪問(wèn)數(shù)據(jù)庫(kù)錯(cuò)誤或key的值
?*?????????大于2147483647時(shí)拋出
?*/
public?int?getCurrentKey(String?tableDotField,?Connection?conn)
throws?KeyException?{
long?value?=?getCurrentKeyLong(tableDotField,?conn);
if?(value??2147483647L)?{
throw?new?KeyException(
"Key's?value?too?big,please?call?getNextKeyLong?method!");
}
return?(new?Long(value)).intValue();
}
/**
?*?用指定的"表code./code字段"形式的字符串獲得key的當(dāng)前值,最大為9223372036854775807
?*?
?*?@param?tableDotField
?*????????????"表.字段"形式的字符串,如:message.id
?*?@param?conn
?*????????????JDBC連接,如果欲獲得的key是第一次取值,則必須保證conn能連接到數(shù)據(jù)庫(kù)
?*?@return?key的當(dāng)前int值
?*?@throws?codeKeyException/code?如果表名或字段名不存在或訪問(wèn)數(shù)據(jù)庫(kù)錯(cuò)誤時(shí)拋出
?*/
public?long?getCurrentKeyLong(String?tableDotField,?Connection?conn)
throws?KeyException?{
int?dot_index?=?tableDotField.indexOf(".");
if?(tableDotField.indexOf(".")??1)?{
throw?new?KeyException("Unknown?Key?'"?+?tableDotField?+?"'!");
}
String?tab?=?tableDotField.substring(0,?dot_index);
String?key?=?tableDotField.substring(dot_index);
return?getCurrentKeyLong(tab,?key,?conn);
}
}
/**
*?內(nèi)部類,用來(lái)存儲(chǔ)主鍵信息
*?*/
class?KeyInfo?{
private?long?max?=?9223372036854775807L;
private?long?min?=?1L;
private?long?nextKey;
private?String?tableName;
private?String?keyName;
private?Connection?conn?=?null;
/**
?*?keyInfo?對(duì)象初始化
?*?
?*?@throws?KeyException
?*/
KeyInfo(String?tableName,?String?keyName,?Connection?_conn)
throws?SQLException,?KeyException?{
this.tableName?=?tableName;
this.keyName?=?keyName;
this.conn?=?_conn;
retrieveFromDB();
}
int?getMax()?{
return?(new?Long(max)).intValue();
}
long?getMaxLong()?{
return?max;
}
int?getMin()?{
return?(new?Long(min)).intValue();
}
long?getMinLong()?{
return?min;
}
/**
?*?取下一鍵值
?*/
int?getNextKey()?{
return?(new?Long(getNextKeyLong())).intValue();
}
/**
?*?取下一鍵值
?*/
synchronized?long?getNextKeyLong()?{
nextKey++;
return?nextKey;
}
/**
?*?取當(dāng)前鍵值
?*/
synchronized?int?getCurrentKey()?{
return?(new?Long(nextKey)).intValue();
}
/**
?*?取當(dāng)前鍵值
?*/
synchronized?long?getCurrentKeyLong()?{
return?nextKey;
}
/**
?*?從數(shù)據(jù)庫(kù)中取當(dāng)前最大值
?*?
?*?@throws?KeyException
?*/
void?retrieveFromDB()?throws?SQLException,?KeyException?{
PreparedStatement?pstmt?=?null;
ResultSet?rs?=?null;
String?sql?=?"select?max("?+?keyName?+?")?from?"?+?tableName;
try?{
pstmt?=?conn.prepareStatement(sql);
}?catch?(Exception?ex)?{
throw?new?KeyException("Can't?connect?DataBase!");
}
try?{
rs?=?pstmt.executeQuery();
}?catch?(SQLException?sqle)?{
if?(pstmt?!=?null)
pstmt.close();
throw?new?KeyException("'"?+?keyName?+?"'?or?'"?+?tableName
+?"'?isn't?exist?in?DataBase!",?sqle);
}
try?{
if?(rs.next())?{
nextKey?=?rs.getLong(1);
if?(nextKey??min)?{
nextKey?=?min;
}
}?else?{
nextKey?=?min;
}
}?catch?(SQLException?sqle)?{
throw?(sqle);
}?finally?{
if?(rs?!=?null)
rs.close();
if?(pstmt?!=?null)
pstmt.close();
}
}
}