<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    Tao

    Tao obeys its own inherent Nature

    Introduce a tool to generate code by writing JavaScript

    Java Based Code Generator - jbcgen

    home page:

    http://sourceforge.net/projects/jbcgen/

    Short Description:

    This code generator generates files from database and templates written in JavaScript. it supports db plugin, and it's easy to extend and use. It supports mysql and db which support ado connection(under windows only) for now. 

    When To Use

    It should be used especially when the code logic is similar, but the table is different. It will save much of your time by generating code automatically instead of copy&paste. For example, you want to write 5 files for each table, you only need to write lines of javascript code without coding the files lots of time.

    Why To Use

    The reason is very simple, the program is very simple and it will save much of your time.

    A very simple example:

    public class Base<%=getDomainByTable(sys_table_name)%>{
    <$
    for (var i=0; i<sys_fields.length; i++)
    {
    var type = getJavaBeanType(sys_fields[i].type);$>
    private <%=type%> <%=sys_fields[i].name%>;
    <$
    }

    for (var i=0; i<sys_fields.length; i++)
    {
    var type = getJavaBeanType(sys_fields[i].type);
    $>
    public <%=type%> get<%=formatFieldName(sys_fields[i].name)%>(){
    return <%=sys_fields[i].name%>;
    }
    public void set<%=formatFieldName(sys_fields[i].name)%> (<%=type%> <%=sys_fields[i].name%>){
    this.<%=sys_fields[i].name%> = <%=sys_fields[i].name%>;
    }
    <$
    }
    $>
    }
     
    If the current table has role_id int, role_name varchar, description varchar, then the result will be:

    public class BaseRole{
    private int role_id;
    private String role_name;
    private String description;

    public int getRoleId(){
    return role_id;
    }
    public void setRoleId (int role_id){
    this.role_id = role_id;
    }
    public String getRoleName(){
    return role_name;
    }
    public void setRoleName (String role_name){
    this.role_name = role_name;
    }
    public String getDescription(){
    return description;
    }
    public void setDescription (String description){
    this.description = description;
    }
    }

    Script Tag:

    1. <$
            //Javascript code like: println(sys_fields[0].name);
      $>
    2. <$=sys_fields[0].name$>

    Predefined variables:

    1. sys_table_name: current selected table name
    2. sys_fields: Array of Field object. use sys_fields.length to get the field count of current table.
    3. sys_keys: Array of Primary key column, use sys_keys.length to get the field count of current table.
    4. sys_user_name: User name used to connect to current database.
    5. sys_db_name: Database name used to connect to.
    6. sys_output: Internal use only which store the temporary generated code. User can use it too by println(sys_output).
    7. Field Object, if there's a field: user_name varchar(100) not null default 'user', here's the available fields and values:
          name: field name, String. For Example: sys_fields[i].name, example value is user_name
          type: field type, String, For Example: sys_fields[i].type, example value is varchar
          size: field length, integer, For Example: sys_fields[i].size, example value is 100
          scale: field scale, integer, For Example: sys_fields[i].scale, not available in this case
          default_value: Default value for the field, String. For Example: sys_fields[i].default_value, example value is user
          is_null: if the field can be null or not, boolean. For Example: sys_fields[i].is_null, example value is false
          is_primary_key: if the field is primary key, boolean. For Example: sys_fields[i].is_primary_key, example value is false.
    8. sys_tables: all table's name in current database.

    Predefined Functions:

    1. print(str). Print the code without new line.
    2. println(str). Print the code with new line.
    3. getFieldList(). Return field list separated by ','
    4. And a few other javascript functions, like capitalize, lowercase, uppercase, trim, etc. which you can add your own by Tools/Edit public functions

    Steps to use this program:

    1. Create a project
    2. Add folder(s) and templates, template is written in JavaScript, and the only difference is it need the following format: <$ you code$> or <%=expression%>
    3. Generate files for multiple tables and templates(folders)

     

    DB Connection Setting

    Steps to config the database:

    1. Select Database Type. Click next.
    2. Input required information like host, port, username, password and database name depends on your database type.

    Generate Files

    Generate current file, Template/Generate current file

    Generate project files, Project/Generate Project Files

    Batch Generate, Project/Batch Generate, and then select tables and templates(folders) to generate files

    Tips

    1. use JavaScript map instead of if ... else ...
      <$
      var type_defaultvalue={
      'int':'0',
      'tinyint':'false',
      'varchar':'""',
      'datetime':'new Date()',
      };

      for (var i=0; i<sys_fields.length; i++)
      {
      var type = sys_fields[i].type;

      if(undef(type_defaultvalue[type])){
      println("Undefined default value for field type: '"+ type+"'");
      }

      //the following line has the same result //println(sys_table_name+".set"+formatFieldName(sys_fields[i].name)+"("+type_defaultvalue[type] + ");"); $> <%=sys_table_name%>.set<%=formatFieldName(sys_fields[i].name)%>(<%=type_defaultvalue[type] %>); <$ } $>
    2. write JavaScript function for project in project properties, and call them to put different tables in different place, e.g.
      function getModule(tablename){
           if(tablename.startsWith('user')){
               return "user/";
          }
          //code to return other module name
          //...
          return "";
      }
      and set the destination path for folder or template using this function: <%=getModule(sys_table_name)%><%=getDomainByTable(sys_table_name)%>Action.java, then if the current table is user, the destination path will be: user/UserAction.java, and if the table is log, then the destination page will be: LogAction.java

    Improve this program:

    Please write to me if:

    1. You need other type db connection or you wrote another db plugin
    2. You don't know how to use it
    3. If you found any bug(s)
    4. Any suggestion and anything else...

     

    Hope it's useful for you. And hope it will decrease your time of copy & paste.

    posted on 2008-03-04 22:48 wade 閱讀(896) 評論(0)  編輯  收藏 所屬分類: C++JavaJavascript

    導航

    <2008年3月>
    2425262728291
    2345678
    9101112131415
    16171819202122
    23242526272829
    303112345

    統計

    常用鏈接

    留言簿(7)

    隨筆分類

    隨筆檔案

    相冊

    Photo

    搜索

    最新評論

    閱讀排行榜

    評論排行榜

    主站蜘蛛池模板: 亚洲国产精品网站在线播放| 亚洲AV人无码激艳猛片| 美女扒开尿口给男人爽免费视频 | 亚洲一级毛片在线观| 亚洲一级视频在线观看| 亚洲成AV人片在线观看WWW| 中文字幕视频免费在线观看| 亚洲2022国产成人精品无码区| 中文字幕在线免费| 亚洲精品乱码久久久久久蜜桃图片 | 国产亚洲精品美女久久久久| 国产亚洲真人做受在线观看| 夜夜嘿视频免费看| 99精品全国免费观看视频 | 亚洲韩国精品无码一区二区三区| 在线观看国产情趣免费视频| 我们的2018在线观看免费高清| **俄罗斯毛片免费| 2020久久精品国产免费| 久久精品免费一区二区喷潮| 国产免费女女脚奴视频网| 在线看片免费人成视久网| 91人人区免费区人人| 亚洲三级在线免费观看| 野花高清在线观看免费完整版中文| 久久午夜夜伦鲁鲁片免费无码影视| 99久久99这里只有免费费精品 | 亚洲精品无码专区在线播放| 亚洲av第一网站久章草| 深夜免费在线视频| 国产在线一区二区综合免费视频| 18成禁人视频免费网站| 成全影视免费观看大全二| 全亚洲最新黄色特级网站 | 男人j进女人p免费视频| AAA日本高清在线播放免费观看| 精品一区二区三区免费毛片爱 | 亚洲电影免费观看| 天天综合亚洲色在线精品| 中国在线观看免费的www| 一二三四影视在线看片免费 |