现在的位置: 首页 > 综合 > 正文

AppFuse Maven Plugin 用来实现 AppFuse代码生成的工具

2013年09月08日 ⁄ 综合 ⁄ 共 2738字 ⁄ 字号 评论关闭

About the AppFuse Maven Plugin (AMP)

This plugin currently does two things:

For more documentation on this plugin, see its Maven-generated site.

Generating CRUD with AMP

Stop and think before generating code!
At first, I didn't want to add a code-generation feature like this because you end up with a 1-to-1 relationship between tables/pojos, DAOs and Managers. On most of my projects, I have far fewer DAOs and Managers than POJOs.

Using this plugin, you can run the following command to generate CRUD screens/classes for a POJO:

mvn appfuse:gen -Dentity=Name

If you don't specify the entity name, you're prompted for it. After generating the code, the plugin will install it for you as well, unless you specify -DdisableInstallation=true. If you disable installation, you can install it using:

mvn appfuse:install -Dentity=Name

To remove the installed artifacts, use:

mvn appfuse:remove -Dentity=Name

If your entity is not defined in hibernate.cfg.xml, it will be added. In a modular project, these commands must be run in the "core" and "web" modules. The plugin is smart enough to figure out when it should/should not generate stuff based on the packaging type (jar vs. war).

There's also a goal that allows you to generate model objects from database tables:

mvn appfuse:gen-model

Once you've generated and installed the POJO, you can generated crud for it using the appfuse:gen command.

We hope to combine gen and gen-model into a single command.

Customizing AMP Templates

The FreeMarker templates that AMP uses to generate code are packaged in the plugin itself. Since version 2.0.2, you can copy the code generation templates into your project using the following command:

appfuse:copy-templates

In previous versions, you can customize templates using the following steps:

  1. Checkout the plugin from SVN (username: guest, password: <blank>):

    svn co https://appfuse.dev.java.net/svn/appfuse/trunk/plugins/appfuse-maven-plugin appfuse-maven-plugin
  2. Customize the templates in src/main/resources/appfuse.
  3. Run mvn install (use -Dmaven.test.skip=true if tests fail and you don't want to fix them).
  4. Make sure your project matches the version number you just installed.

Installing AppFuse's source into your project

The good news is creating an "old style" project is now pretty easy. If you create a new project using 2.0-m5+, you can now use:

mvn appfuse:full-source

This goal will convert your project to use all of AppFuse's source and remove all dependencies on AppFuse. It will also refactor all package names and directories to match your project's groupId.

What the full-source plugin does:

  1. Exports all sources from Subversion into your project. It reads the dao.framework and web.framework properties to determine what you need.
  2. Removes warpath plugin from pom.xml.
  3. Calculates dependencies by reading pom.xml files form the various AppFuse modules. It replaces your dependencies with these new ones. The order of the dependencies added is alphabetical based on groupId.
  4. Reads properties from the root AppFuse pom.xml and adds the ones that don't exist to your project.
  5. Renames packages to match your project's groupId.

抱歉!评论已关闭.