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-198.html 6.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
  2. <html>
  3. <head>
  4. <title>AspectJ 1.9.8 Readme</title>
  5. <style type="text/css">
  6. <!--
  7. P { margin-left: 20px; }
  8. PRE { margin-left: 20px; }
  9. LI { margin-left: 20px; }
  10. H4 { margin-left: 20px; }
  11. H3 { margin-left: 10px; }
  12. -->
  13. </style>
  14. </head>
  15. <body>
  16. <div align="right"><small>&copy; Copyright 2021 Contributors. All rights reserved.</small></div>
  17. <h1>AspectJ 1.9.8</h1>
  18. <p>
  19. Please note that Bugzilla for issue management is deprecated and new issues should be filed as
  20. <a href="https://github.com/eclipse/org.aspectj/issues/new">GitHub issues</a>.
  21. The list of issues addressed for 1.9.8 can be found
  22. <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.8">here for Bugzilla</a>
  23. and <a href="https://github.com/eclipse/org.aspectj/issues?q=is%3Aissue+is%3Aclosed++milestone%3A1.9.8">here for GitHub issues</a>.
  24. </p>
  25. <h2>New features</h2>
  26. <p>
  27. AspectJ 1.9.8 supports <a href="https://openjdk.java.net/projects/jdk/17/">Java 17</a> and its final and preview
  28. features, such as:
  29. </p>
  30. <ul>
  31. <li>Sealed classes (final in Java 17, previews in Java 15, 16 and AspectJ 1.9.7)</li>
  32. <li>Pattern matching for <tt>switch</tt></li>
  33. </ul>
  34. <h2>Improvements</h2>
  35. <p>
  36. The <tt>--release N</tt> compiler option for correct cross-compilation to previous JDK bytecode + API versions is now
  37. supported by AJC. Previously, the option existed (inherited by ECJ) but did not work correctly.
  38. </p>
  39. <p>
  40. The following new properties can improve performance, e.g. Spring start-up time:
  41. </p>
  42. <ul>
  43. <li><tt>org.aspectj.apache.bcel.useSingleRepositoryInstance</tt></li>
  44. <li><tt>org.aspectj.apache.bcel.useUnavailableClassesCache</tt></li>
  45. <li><tt>org.aspectj.apache.bcel.ignoreCacheClearRequests</tt></li>
  46. </ul>
  47. <p>
  48. For now, they all default to <tt>false</tt> for backward compatibility. This might change in a future Aspect release,
  49. if user feedback is positive and no negative side effects are found. Please try using them as much as you can and
  50. report back questions (to the AspectJ users mailing list) or problems (as a GitHub issue), if any. Thanks to Stefan
  51. Starke for his contribution. See also <a href="https://github.com/eclipse/org.aspectj/pull/37">PR #37</a>.
  52. </p>
  53. <h2>Code examples</h2>
  54. <p>
  55. You can find some sample code in the AspectJ test suite under the respective AspectJ version in which the features
  56. were first supported (possibly as JVM preview features):
  57. </p>
  58. <ul>
  59. <li>
  60. <a href="https://github.com/eclipse/org.aspectj/tree/master/tests/features198/compiler_release">
  61. Cross-compilation to legacy JDK
  62. </a>:
  63. An example class which only works correctly on JDK 8 when compiled with <tt>--release 8</tt> due to API changes in
  64. the JDK. Simply <tt>-source 8 -target 8</tt> would not be enough in this case.
  65. </li>
  66. <li>
  67. <a href="https://github.com/eclipse/org.aspectj/tree/master/tests/features198/java17">
  68. Pattern matching for switch
  69. </a>
  70. </li>
  71. </ul>
  72. <h2>Other changes and bug fixes</h2>
  73. <ul>
  74. <li>
  75. The AspectJ compiler <tt>ajc</tt> (contained in the <tt>aspectjtools</tt> library) no longer works on JDKs 8 to 10.
  76. The minimum compile-time requirement is now JDK 11 due to upstream changes in the Eclipse Java Compiler (subset of
  77. JDT Core), which AspectJ is a fork of. You can still compile to legacy target versions as low as Java 1.3 when
  78. compiling plain Java code or using plain Java ITD constructs which do not require the AspectJ runtime
  79. <tt>aspectjrt</tt>, but the compiler itself needs JDK 11+. Just like in previous AspectJ versions, both the runtime
  80. <tt>aspectjrt</tt> and the load-time weaver <tt>aspectjweaver</tt> still only require JRE 8+.
  81. </li>
  82. <li>Document build profiles and properties in <i>docs/developer/BUILD.md</i></li>
  83. <li>Add a guide for setting up an AspectJ development environment in <i>docs/developer/IDE.md</i></li>
  84. <li>
  85. Fix <a href="https://github.com/eclipse/org.aspectj/issues/105">issue #105</a>: Compilation fails when using an
  86. aspect library via <tt>-aspectpath</tt> in combination with introducing an annotation via ITD. This was broken since
  87. version 1.9.5 and fixed in 1.9.8.RC3.
  88. </li>
  89. <li>
  90. Fix <a href="https://github.com/eclipse/org.aspectj/issues/68">issue #68</a>: Correctly process class files
  91. containing <a href="https://openjdk.java.net/jeps/309">dynamic class-file constants (JEP 309)</a>, which were
  92. introduced in Java 11 and broken in AspectJ ever since their introduction in 1.9.2. Java itself currently does not
  93. use "condy" and neither do other widespread JVM languages. Byte code engineering libraries like ASM or Byte Buddy
  94. and some instrumentation tools like JaCoCo can however produce condy code. Therefore, in order to create a
  95. regression test, we actually had to
  96. <a href="https://github.com/eclipse/org.aspectj/blob/de63b63d/tests/bugs198/github_68/Generator.java#L50-L61">
  97. craft a condy class with ASM</a>.
  98. </li>
  99. <li>
  100. Thanks to Andrey Turbanov for several clean code contributions and to Dmitry Mikhaylov for fixing a potential
  101. concurrency problem.
  102. </li>
  103. </ul>
  104. <h2>AspectJ usage hints</h2>
  105. <h3>Use LTW on Java 16+</h3>
  106. <p>
  107. Please note that if you want to use load-time weaving on Java 16+, the weaving agent collides with
  108. <a href="https://openjdk.java.net/jeps/396">JEP 396 (Strongly Encapsulate JDK Internals by Default)</a>. Therefore,
  109. you need to set the JVM parameter <tt>--add-opens java.base/java.lang=ALL-UNNAMED</tt> in order to enable aspect
  110. weaving. This is due to the fact that the weaver uses internal APIs for which we have not found an adequate
  111. replacement yet when defining classes in different classloaders.
  112. </p>
  113. <h3>Compile with Java preview features</h3>
  114. <p>
  115. For features marked as preview on a given JDK, you need to compile with <tt>ajc --enable-preview</tt> and run with
  116. <tt>java --enable-preview</tt> on that JDK.
  117. </p>
  118. <p>
  119. Please note that you cannot run code compiled with preview features on any other JDK than the one used for
  120. compilation. For example, records compiled with preview on JDK 15 cannot be used on JDK 16 without recompilation. This
  121. is a JVM limitation unrelated to AspectJ. Also, e.g. sealed classes are preview-1 on JDK 15 and preview-2 on JDK 16.
  122. You still need to recompile, no matter what.
  123. </p>
  124. <hr>
  125. <p>
  126. <b>Available:</b> 1.9.8 available 11-Feb-2022
  127. </p>
  128. </body>
  129. </html>