如何新建一个活动插件项目? 专题一: 手工创建活动插件项目步骤 1. 创建一个maven项目 1. 追加父pom ``` <parent> <groupId>org.h5huodong.p3</groupId> <artifactId>P3-starter-parent</artifactId> <version>1.0.0-SNAPSHOT</version> <relativePath>../parent/pom.xml</relativePath> </parent> ``` 1. 添加 p3基础依赖 ``` <dependency> <groupId>org.h5huodong.p3</groupId> <artifactId>P3-starter-quick</artifactId> </dependency> ``` 1. 通过上面步骤插件项目创建完成 专题二: 第一个插件项目,实战hello world ``` jeewx 4.0 技术架构: MVC层 : SpringMvc_4.0.9.RELEASE 持久层: mybatis View层: Velocity_1.6.4 UI 层 : H+、Bootstrap、Jquery ```