You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README-190.html 10KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
  2. <html> <head>
  3. <title>AspectJ 1.9.0.RC1 Readme</title>
  4. <style type="text/css">
  5. <!--
  6. P { margin-left: 20px; }
  7. PRE { margin-left: 20px; }
  8. LI { margin-left: 20px; }
  9. H4 { margin-left: 20px; }
  10. H3 { margin-left: 10px; }
  11. -->
  12. </style>
  13. </head>
  14. <body>
  15. <div align="right"><small>
  16. &copy; Copyright 2017 Contributors.
  17. All rights reserved.
  18. </small></div>
  19. <h1>AspectJ 1.9.0.RC2 Readme</h1>
  20. <p>The full list of resolved issues in 1.9.0 is available
  21. <a href="https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&f0=OP&f1=OP&f3=CP&f4=CP&j1=OR&list_id=16866879&product=AspectJ&query_format=advanced&target_milestone=1.9.0">here</a></h2>.</p>
  22. <ul>
  23. <li>1.9.0.RC2 available 9-Nov-2017
  24. </ul>
  25. <h3>1.9.0.RC2 changes</h3>
  26. <p>Key change in 1.9.0.RC2 is actually to be more tolerant of JDK10. The version handling has been somewhat overhauled so AspectJ 9 will
  27. behave better on Java 10 and future JDKs. This should put AspectJ in a better place if new JDK versions are going
  28. to arrive thick and fast.
  29. <ul>
  30. <li>1.9.0.RC1 available 20-Oct-2017
  31. </ul>
  32. <h3>1.9.0.RC1 changes</h3>
  33. <p>This is the first release candidate of AspectJ 1.9.0 - the version of AspectJ to be based on Java9. It includes
  34. a recent version of the Eclipse Java9 compiler (from jdt core, commit #062ac5d7a6bf9).</p>
  35. <h4>Automatic Modules</h4>
  36. <p>AspectJ can now be used with the new module system available in Java9. The key jars in AspectJ have been given automatic module names.
  37. The automatic module name is <tt>org.aspectj.runtime</tt> for the <tt>aspectjrt</tt> module:</p>
  38. <pre><code>
  39. $ java --module-path &lt;pathto&gt;/lib/aspectjrt.jar --list-modules | grep aspectj
  40. org.aspectj.runtime file:///&lt;pathto&gt;/lib/aspectjrt.jar automatic
  41. </code></pre>
  42. <p>And similarly <tt>org.aspectj.weaver</tt> and <tt>org.aspectj.tools</tt> for <tt>aspectjweaver</tt> and <tt>aspectjtools</tt> respectively:</p>
  43. <pre><code>
  44. $ java --module-path &lt;pathto&gt;/lib/aspectjweaver.jar --describe-module org.aspectj.weaver
  45. org.aspectj.weaver file:///&lt;pathto&gt;/lib/aspectjweaver.jar automatic
  46. requires java.base mandated
  47. contains aj.org.objectweb.asm
  48. contains aj.org.objectweb.asm.signature
  49. contains org.aspectj.apache.bcel
  50. contains org.aspectj.apache.bcel.classfile
  51. contains org.aspectj.apache.bcel.classfile.annotation
  52. contains org.aspectj.apache.bcel.generic
  53. contains org.aspectj.apache.bcel.util
  54. contains org.aspectj.asm
  55. contains org.aspectj.asm.internal
  56. ...
  57. </code></pre>
  58. </p>
  59. <br><br>
  60. <h4>Building woven modules</h4>
  61. <p>AspectJ understands module-info.java source files and building modules that include aspects. Here is an example:</p>
  62. <pre><code>
  63. <b>module-info.java</b>
  64. module demo {
  65. exports pkg;
  66. requires org.aspectj.runtime;
  67. }
  68. <b>pkg/Demo.java</b>
  69. package pkg;
  70. public class Demo {
  71. public static void main(String[] argv) {
  72. System.out.println("Demo running");
  73. }
  74. }
  75. <b>otherpkg/Azpect.java</b>
  76. package otherpkg;
  77. public aspect Azpect {
  78. before(): execution(* *(..)) && !within(Azpect) {
  79. System.out.println("Azpect running");
  80. }
  81. }
  82. </code></pre>
  83. <p>We can now build those into a module:</p>
  84. <pre><code>
  85. $ ajc -1.9 module-info.java otherpkg/Azpect.java pkg/Demo.java -outjar demo.jar
  86. ...
  87. module-info.java:3 [error] org.aspectj.runtime cannot be resolved to a module
  88. ...
  89. </code></pre>
  90. <p>Wait, that failed! Yes, <tt>aspectjrt.jar</tt> (which includes the required <tt>org.aspectj.weaver</tt> module) wasn't supplied.
  91. We need to pass it on the module-path:</p>
  92. <pre><code>
  93. $ ajc -1.9 --module-path &lt;pathto&gt;/aspectjrt.jar module-info.java otherpkg/Azpect.java pkg/Demo.java -outjar demo.jar
  94. </code></pre>
  95. <p>Now we have a demo module we can run:</p>
  96. <pre><code>
  97. $ java --module-path &lt;pathto&gt;/aspectjrt.jar:demo.jar --module demo/pkg.Demo
  98. Azpect running
  99. Demo running
  100. </code></pre>
  101. <p>That's it!</p>
  102. <br><br>
  103. <h4>Binary weaving with modules</h4>
  104. <p>A module is really just a jar with a module-info descriptor. As such you can simply pass a module on the <tt>inpath</tt>
  105. and binary weave it with other aspects. Take the module we built above, let's weave into it again:</p>
  106. <pre><code>extra/AnotherAzpect.java
  107. package extra;
  108. public aspect AnotherAzpect {
  109. before(): execution(* *(..)) && !within(*Azpect) {
  110. System.out.println("AnotherAzpect running");
  111. }
  112. }
  113. </code></pre>
  114. <pre><code>
  115. $ ajc -inpath demo.jar AnotherAzpect.java -outjar newdemo.jar</code></pre>
  116. <p>Notice how there was no complaint here that the <tt>org.aspectj.runtime</tt> module hadn't been passed in. That is because <tt>inpath</tt>
  117. was being used which doesn't treat specified jars as modules (and so does not check dependencies). There is no <tt>module-inpath</tt> right now.
  118. <p>Because the new jar produced includes the compiled aspect, the module-info specification inside is still correct, so we can run it
  119. exactly as before:</p>
  120. <pre><code>$ java --module-path ~/installs/aspectj190rc1/lib/aspectjrt.jar:newdemo.jar --module demo/pkg.Demo
  121. Azpect running
  122. AnotherAzpect running
  123. Demo running
  124. </code></pre>
  125. <br><br>
  126. <h4>Faster Spring AOP</h4>
  127. <p>Dave Syer recently created a series of benchmarks for checking the speed of Spring-AspectJ:
  128. <tt><a href="https://github.com/dsyer/spring-boot-aspectj">https://github.com/dsyer/spring-boot-aspectj</a></tt>
  129. <p>Here we can see the numbers for AspectJ 1.8.11 (on an older Macbook Pro):
  130. <pre><code>
  131. Benchmark (scale) Mode Cnt Score Error Units
  132. StartupBenchmark.ltw N/A avgt 10 2.553 ~ 0.030 s/op
  133. StartupBenchmark.ltw_100 N/A avgt 10 2.608 ~ 0.046 s/op
  134. StartupBenchmark.spring v0_10 avgt 10 2.120 ~ 0.148 s/op
  135. StartupBenchmark.spring v1_10 avgt 10 2.219 ~ 0.066 s/op
  136. StartupBenchmark.spring v1_100 avgt 10 2.244 ~ 0.030 s/op
  137. StartupBenchmark.spring v10_50 avgt 10 2.950 ~ 0.026 s/op
  138. StartupBenchmark.spring v20_50 avgt 10 3.854 ~ 0.090 s/op
  139. StartupBenchmark.spring v20_100 avgt 10 4.003 ~ 0.038 s/op
  140. StartupBenchmark.spring a0_10 avgt 10 2.067 ~ 0.019 s/op
  141. StartupBenchmark.spring a1_10 avgt 10 2.724 ~ 0.023 s/op
  142. StartupBenchmark.spring a1_100 avgt 10 2.778 ~ 0.057 s/op
  143. StartupBenchmark.spring a10_50 avgt 10 7.191 ~ 0.134 s/op
  144. StartupBenchmark.spring a10_100 avgt 10 7.191 ~ 0.168 s/op
  145. StartupBenchmark.spring a20_50 avgt 10 11.541 ~ 0.158 s/op
  146. StartupBenchmark.spring a20_100 avgt 10 11.464 ~ 0.157 s/op
  147. </code></pre>
  148. <p>So this is the average startup of an app affected by aspects applying to the beans involved.
  149. Where numbers are referenced the first is the number of aspects/pointcuts and the second
  150. is the number of beans. The 'a' indicates an annotation based pointcut vs a non-annotation
  151. based pointcut ('v'). Notice things are much worse for annotation based pointcuts. At 20
  152. pointcuts and 50 beans the app is 9 seconds slower to startup.
  153. <br>
  154. <p>In AspectJ 1.8.12 and 1.9.0.RC1 some work has been done here. The key change is to recognize that the use
  155. of annotations with runtime retention is much more likely than annotations with class level
  156. retention. Retrieving annotations with class retention is costly because we must open the
  157. bytes for the class file and dig around in there (vs runtime retention which are immediately
  158. accessible by reflection on the types). In 1.8.11 the actual type of the annotation involved
  159. in the matching is ignored and the code will fetch *all* the annotations on the type/method/field
  160. being matched against. So even if the match is looking for a runtime retention annotation, we
  161. were doing the costly thing of fetching any class retention annotations. In 1.8.12/1.9.0.RC1
  162. we take the type of the match annotation into account - allowing us to skip opening the classfiles
  163. in many cases. There is also some deeper work on activating caches that were not previously
  164. being used correctly but the primary change is factoring in the annotation type.
  165. <p>What difference does that make?
  166. AspectJ 1.9.0.RC1:
  167. <pre><code>
  168. Benchmark (scale) Mode Cnt Score Error Units
  169. StartupBenchmark.ltw N/A avgt 10 2.568 ~ 0.035 s/op
  170. StartupBenchmark.ltw_100 N/A avgt 10 2.622 ~ 0.075 s/op
  171. StartupBenchmark.spring v0_10 avgt 10 2.096 ~ 0.054 s/op
  172. StartupBenchmark.spring v1_10 avgt 10 2.206 ~ 0.031 s/op
  173. StartupBenchmark.spring v1_100 avgt 10 2.252 ~ 0.025 s/op
  174. StartupBenchmark.spring v10_50 avgt 10 2.979 ~ 0.071 s/op
  175. StartupBenchmark.spring v20_50 avgt 10 3.851 ~ 0.058 s/op
  176. StartupBenchmark.spring v20_100 avgt 10 4.000 ~ 0.046 s/op
  177. StartupBenchmark.spring a0_10 avgt 10 2.071 ~ 0.026 s/op
  178. StartupBenchmark.spring a1_10 avgt 10 2.182 ~ 0.032 s/op
  179. StartupBenchmark.spring a1_100 avgt 10 2.272 ~ 0.024 s/op
  180. StartupBenchmark.spring a10_50 avgt 10 2.557 ~ 0.027 s/op
  181. StartupBenchmark.spring a10_100 avgt 10 2.598 ~ 0.040 s/op
  182. StartupBenchmark.spring a20_50 avgt 10 2.961 ~ 0.043 s/op
  183. StartupBenchmark.spring a20_100 avgt 10 3.093 ~ 0.098 s/op
  184. </code></pre>
  185. <p>Look at the a20_100 case - instead of impacting start time by 9 seconds, it impacts it by 1 second.
  186. <h3>More to come...</h3>
  187. <ul>
  188. <li><p>Eclipse JDT Java 9 support is still being actively worked on and lots of fixes will be coming through over the next few months
  189. and included in AspectJ 1.9.X revisions.</p>
  190. <li><p>AspectJ does not currently modify <tt>module-info.java</tt> files. An aspect from one module applying to code in
  191. another module clearly introduces a dependency between those two modules. There is no reason - other than time! - that
  192. this can't be done. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=526244">Issue 526244</a>)</p>
  193. <li><p>Related to that AspectJ, on detection of aspects should be able to automatically introduce the <tt>requires org.aspectj.runtime</tt> to
  194. the <tt>module-info</tt>. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=526242">Issue 526242</a>)</p>
  195. <li><p>Module aware variants of AspectJ paths: <tt>--module-inpath</tt>, <tt>--module-aspectpath</tt>. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=526243">Issue 526243</a>)</p>
  196. </ul>
  197. <!-- ============================== -->
  198. </body>
  199. </html>