appfuse配置说明

阅读更多
appfuse安装完全按照官网即可。
http://appfuse.org/display/APF/AppFuse+QuickStart

关于appfuse安装完成后
1、先调用mvn appfuse:full-config,将项目从"embedded mode"修改为"full-source mode"。然后mvn jetty:run运行。如果运行不成功,一些常见问题的解决方案如下:
  • maven3有BUG,如果pom.xml没有自动生成版本数据,需要手动录入(如1.4),注意手动去找!汗~
  • hibernate.properties设置app.search.index.basedir=${project.build.outputDirectory}/index
  • 如果mvn compile遇到java版本冲突,pom.xml查看maven-compiler-plugin的版本设置;再看eclipse中java compiler

2、没必要在eclipse中集成maven插件,没什么用,直接命令行运行mvn jetty:run
   扩展:http://docs.codehaus.org/display/JETTY/Debugging+with+the+Maven+Jetty+Plugin+inside+Eclipse [注意:若集成maven插件,在eclipse.ini中给maven配置外部jdk。(--vm...)]
3、pom.xml
  • 修改mysql的JDBC密码
  • 依赖包下载完成后maven\conf下的setting.xml设置true
  • hibernate3-maven-plugin,dbunit-maven-plugin,修改true,运行时自动跳过数据库自动创建表等功能。详见:http://ll-feng.iteye.com/blog/221252
  • 页面编码问题,对pom.xml文件如下设置

  •            
                    src/main/resources
                   
                        ApplicationResources_de.properties
                        ApplicationResources_fr.properties
                        ApplicationResources_ko.properties
                        ApplicationResources_nl.properties
                        ApplicationResources_no.properties
                        ApplicationResources_pt*.properties
                        ApplicationResources_tr.properties
                        *_zh*.properties
                        applicationContext-resources.xml
                        struts.xml
                   

                    true
               

          
4、appfuse工程中的pom带有velocity,配置时在web.xml加上相应的servlet即可
5、应用开发中,为url设置访问权限,注意配置security.xml
6、规范流程,每个method必须写单元测试,参考http://appfuse.org/display/APF/Using+Struts+2

你可能感兴趣的:(appfuse)