码迷,mamicode.com
首页 > 移动开发 > 详细

appfuse-maven-plugin(AMP)

时间:2015-01-17 06:26:28      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:

  1.  mvn appfuse:gen -Dentity=Name
     
    为POJO生成CRUD。Name的值默认是${groupId}.model.Name。
    自定义包路径:
    -Dentity=com.myproject.subpackage.model.Name
    或者
    -Dentity=~.subpackage.model.Name.
    ~代表 ${groupId}.
    如果没有指定Name值会有选择选项。该命令会自动安装,如果指定了-DdisableInstallation=true用下面的命令进行安装

  2.  mvn appfuse:install -Dentity=Name 


  3.  mvn appfuse:remove -Dentity=Name 

    移除dao的相关操作

  4.  mvn appfuse:full-source 

  5.  mvn appfuse:gen-model 

    从数据库中生成POJO对象

  注意:

  • 如果不使用给的GenericDao和GenericManager。修改pom.xml中的 <amp.genericCore>false</amp.genericCore> 
  • 外键的设置

    If you have tables with foreign key ift‘s necessary to alter the template src/test/resources/appfuse/model/Ejb3PropertyGetAnnotation.ftl

            <#lt/>${pojo.generateJoinColumnsAnnotation(property, cfg)} instead of

            <#lt/>${pojo.generateJoinColumnsAnnotation(property)}

    to generate @ManyToOne anotations 

    (It‘s necessary to do mvn appfuse:copy-templates first)

    Don‘t forget to change this to read the identifier field from the other pojo 

        <form:select ...  itemLabel="label" itemValue="value" >

    in your WEB-INF/pages/entityform.jsp

  

appfuse-maven-plugin(AMP)

标签:

原文地址:http://www.cnblogs.com/fengyexjtu/p/4230089.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!