spark的自留地(ofbiz/eclipse rcp/shark/opentaps)

            BlogJava :: 首頁 :: 聯(lián)系 :: 聚合  :: 管理
            54 Posts :: 0 Stories :: 112 Comments :: 0 Trackbacks
          在Opentaps 1.4版本我將AOP由原來的AspectJ替換為現(xiàn)在Aspectwerkz。結(jié)果我自己就首先在64bit的windows系統(tǒng)下遇到ant編譯出錯(cuò),現(xiàn)在把解決方法列在這里

          將opentaps/opentaps-common/build-aspects.xml中的weave任務(wù)內(nèi)容替換為以下內(nèi)容(其實(shí)就是把原來的ant的替換jar內(nèi)容任務(wù)分成兩部來執(zhí)行):

          <!-- ================================================================== --> 
                  
          <!-- Weave advice into target jars                                      --> 
                  
          <!-- ================================================================== --> 
                  
          <target name="weave" depends="detect-dependencies" if="processRequired"> 
                    
          <echo message="[build] =========== Start Building Aspect (Weave) ============="/> 
                    
          <java classname="org.codehaus.aspectwerkz.compiler.AspectWerkzC" fork="true"> 
                      
          <jvmarg value="-Daspectwerkz.definition.file=${aopConfig}"/> 
                      
          <jvmarg value="-Daspectwerkz.transform.filter=no"/> 
                      
          <!-- <jvmarg value="-Daspectwerkz.transform.verbose=true"/> --> 
                      
          <!-- <jvmarg value="-Daspectwerkz.transform.details=true"/> --> 
                      
          <arg value="-verify"/> 
                      
          <classpath refid="local.class.path" /> 
                      
          <classpath> 
                        
          <pathelement path="${build.dir}/classes/common"/> 
                      
          </classpath> 
                      
          <!-- below is the jars to post-process --> 
                      
          <arg value="${ofbiz.dir}/framework/entity/build/lib/ofbiz-entity.jar"/> 
                    
          </java> 
                    
          <java classname="org.codehaus.aspectwerkz.compiler.AspectWerkzC" fork="true"> 
                      
          <jvmarg value="-Daspectwerkz.definition.file=${aopConfig}"/> 
                      
          <jvmarg value="-Daspectwerkz.transform.filter=no"/> 
                      
          <!-- <jvmarg value="-Daspectwerkz.transform.verbose=true"/> --> 
                      
          <!-- <jvmarg value="-Daspectwerkz.transform.details=true"/> --> 
                      
          <arg value="-verify"/> 
                      
          <classpath refid="local.class.path" /> 
                      
          <classpath> 
                        
          <pathelement path="${build.dir}/classes/common"/> 
                      
          </classpath> 
                      
          <!-- below is the jars to post-process, if these jar not effect each other you can put them in same pos, else please seperate them into another task --> 
                      
          <arg value="${ofbiz.dir}/framework/common/build/lib/ofbiz-common.jar"/> 
                    
          </java> 
                    
          <java classname="org.codehaus.aspectwerkz.compiler.AspectWerkzC" fork="true"> 
                      
          <jvmarg value="-Daspectwerkz.definition.file=${aopConfig}"/> 
                      
          <jvmarg value="-Daspectwerkz.transform.filter=no"/> 
                      
          <!-- <jvmarg value="-Daspectwerkz.transform.verbose=true"/> --> 
                      
          <!-- <jvmarg value="-Daspectwerkz.transform.details=true"/> --> 
                      
          <arg value="-verify"/> 
                      
          <classpath refid="local.class.path" /> 
                      
          <classpath> 
                        
          <pathelement path="${build.dir}/classes/common"/> 
                      
          </classpath> 
                      
          <!-- below is the jars to post-process --> 
                      
          <arg value="${ofbiz.dir}/applications/order/build/lib/ofbiz-order.jar"/> 
                    
          </java> 
                    
          <jar jarfile="${lib.dir}/${name}.jar" update="true" basedir="${build.dir}/classes/common" includes="org/opentaps/aspect/secas/**" /> 
                      
          <!-- put aop.xml into target jar META-INF dir --> 
                       
          <mkdir dir="${build.dir}/classes/META-INF" /> 
                       
          <copy file="${aopConfig}" tofile="${build.dir}/classes/META-INF/aop.xml" overwrite="true"/> 
                     
          <!-- create new jar with aop.xml, then copy it to orign location, using these for avoid unable rename error on windows 64bit system--> 
                         
          <zip destfile="${lib.dir}/ofbiz-entity.jar"> 
                         
          <zipfileset src="${ofbiz.dir}/framework/entity/build/lib/ofbiz-entity.jar"/> 
                         
          <fileset dir="${build.dir}/classes/"> 
                           
          <include name="META-INF/aop.xml"/> 
                         
          </fileset> 
                         
          </zip> 
                     
          <delete file="${ofbiz.dir}/framework/entity/build/lib/ofbiz-entity.jar" failonerror="false"/> 
                         
          <move file="${lib.dir}/ofbiz-entity.jar" tofile="${ofbiz.dir}/framework/entity/build/lib/ofbiz-entity.jar"/> 

                         
          <zip destfile="${lib.dir}/ofbiz-common.jar"> 
                         
          <zipfileset src="${ofbiz.dir}/framework/common/build/lib/ofbiz-common.jar"/> 
                         
          <fileset dir="${build.dir}/classes/"> 
                           
          <include name="META-INF/aop.xml"/> 
                         
          </fileset> 
                         
          </zip> 
                     
          <delete file="${ofbiz.dir}/framework/common/build/lib/ofbiz-common.jar" failonerror="false"/> 
                         
          <move file="${lib.dir}/ofbiz-common.jar" tofile="${ofbiz.dir}/framework/common/build/lib/ofbiz-common.jar"/> 

                     
          <zip destfile="${lib.dir}/ofbiz-order.jar"> 
                         
          <zipfileset src="${ofbiz.dir}/applications/order/build/lib/ofbiz-order.jar"/> 
                         
          <fileset dir="${build.dir}/classes/"> 
                           
          <include name="META-INF/aop.xml"/> 
                         
          </fileset> 
                         
          </zip> 
                     
          <delete file="${ofbiz.dir}/applications/order/build/lib/ofbiz-order.jar" failonerror="false"/> 
                         
          <move file="${lib.dir}/ofbiz-order.jar" tofile="${ofbiz.dir}/applications/order/build/lib/ofbiz-order.jar"/> 

                       
          <echo message="[build] =========== Done Building Aspect (Weave) =============="/> 
                     
          </target>


          以上方法已經(jīng)在opentaps wiki [http://www.opentaps.org/docs/index.php/General_Installation_of_Opentaps#Build_Aspect_class_Errors] 中加上過了。
          posted on 2011-02-09 22:18 shanghai_spark 閱讀(1634) 評論(0)  編輯  收藏 所屬分類: opentaps
          主站蜘蛛池模板: 浏阳市| 岳阳市| 牙克石市| 上高县| 休宁县| 吉首市| 罗平县| 玉田县| 宜兴市| 漳平市| 新泰市| 自贡市| 浦北县| 隆昌县| 建宁县| 新巴尔虎右旗| 扶绥县| 新昌县| 嵊州市| 甘肃省| 全州县| 沭阳县| 昔阳县| 大方县| 恩平市| 翼城县| 拉孜县| 五大连池市| 临夏市| 化德县| 株洲县| 葵青区| 溧阳市| 颍上县| 武冈市| 绍兴县| 马鞍山市| 盘山县| 客服| 西盟| 石棉县|