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-1920.html 7.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
  2. <html>
  3. <head>
  4. <title>AspectJ 1.9.20 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 2023 Contributors. All rights reserved.</small></div>
  17. <h1>AspectJ 1.9.20.1</h1>
  18. <p>
  19. This is a bugfix release for 1.9.20, fixing two problems:
  20. <ul>
  21. <li>
  22. <a href="https://github.com/eclipse-aspectj/aspectj/issues/257">Regression bug 257</a> introduced in 1.9.20 would
  23. match negated type patterns like <tt>!void</tt> or <tt>!String[]</tt> incorrectly.
  24. </li>
  25. <li>
  26. <a href="https://github.com/spring-projects/spring-framework/issues/27761">Spring issue 27761</a> describes a
  27. problem where AspectJ, when used by Spring AOP, in rare cases falsely considered bridge methods for overridden
  28. generic methods for matching, leading to falsely negative matching results. See also
  29. <a href="https://github.com/eclipse-aspectj/aspectj/issues/256">AspectJ tracker issue 256</a>).
  30. </li>
  31. </ul>
  32. </p>
  33. <p>
  34. The list of issues addressed for 1.9.20.1 can be found
  35. <a href="https://github.com/eclipse/org.aspectj/issues?q=is%3Aissue+is%3Aclosed++milestone%3A1.9.20.1">here</a>.
  36. </p>
  37. <h1>AspectJ 1.9.20</h1>
  38. <p>
  39. Please note that Bugzilla for issue management is deprecated and new issues should be filed as
  40. <a href="https://github.com/eclipse/org.aspectj/issues/new">GitHub issues</a>.
  41. The list of issues addressed for 1.9.20 can be found here:
  42. <ul>
  43. <li><a href="https://github.com/eclipse/org.aspectj/issues?q=is%3Aissue+is%3Aclosed++milestone%3A1.9.20">GitHub 1.9.20</a></li>
  44. <li><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.20">Bugzilla 1.9.20</a></li>
  45. </ul>
  46. </p>
  47. <h2>New features</h2>
  48. <p>
  49. AspectJ 1.9.20 supports <a href="https://openjdk.java.net/projects/jdk/20/">Java 20</a> and its final, preview and
  50. incubator features, such as:
  51. </p>
  52. <ul>
  53. <li>Record patterns (preview)</li>
  54. <li>Virtual threads (preview)</li>
  55. <li>Pattern matching for <tt>switch</tt> (preview 3)</li>
  56. <li>Structured concurrency (incubator)</li>
  57. </ul>
  58. <p>
  59. Please note that the upstream Eclipse Java Compiler (ECJ) which the AspectJ Compiler (AJC) is a fork of still has some
  60. open issues concerning Java 20 preview feature support, see the list in
  61. <a href="https://github.com/eclipse/org.aspectj/issues/184#issuecomment-1272254940">this comment</a>. AJC therefore
  62. inherits the same problems for the specific cases described in the linked issues.
  63. </p>
  64. <h2>Improvements</h2>
  65. <ul>
  66. <li>
  67. Since Java 9 and the introduction of the Java Module System, the upstream Eclipse Java Compiler (ECJ) and Eclipse
  68. Java Development Tools (JDT) had gone through some internal changes, enabling both the compiler and the IDE to
  69. handle new Java language features. In AspectJ, some of those internal changes have not been properly upgraded for
  70. quite a while, but this is now fixed. However, it might <b>require you to recompile your aspects and
  71. projects/classes using them.</b> Otherwise, you might get problems in Eclipse IDE or under certain circumstances
  72. even when running newly compiled aspects in older AspectJ versions and vice versa. You are on the safe side if you
  73. simply rebuild your projects. We are sorry for the inconvenience, but we have to follow upstream ECJ and JDT
  74. changes.
  75. </li>
  76. <li>
  77. Along with fixing <a href="https://github.com/eclipse-aspectj/aspectj/issues/24">GitHub bug 24</a>, the syntax for
  78. array type matching has been improved considerably. You can find some examples
  79. <a href="https://github.com/eclipse-aspectj/aspectj/tree/master/tests/bugs1920/github_24">here</a>.
  80. </li>
  81. </ul>
  82. <h2>Code examples</h2>
  83. <p>
  84. You can find some sample code in the AspectJ test suite under the respective AspectJ version in which the features
  85. were first supported (possibly as JVM preview features):
  86. </p>
  87. <ul>
  88. <li>
  89. <a href="https://github.com/eclipse/org.aspectj/tree/master/tests/features198/java17">
  90. Pattern matching for switch (preview 1)
  91. </a>
  92. </li>
  93. <li>
  94. <a href="https://github.com/eclipse/org.aspectj/tree/master/tests/features199/java18">
  95. Pattern matching for switch (preview 2)
  96. </a>
  97. </li>
  98. <li>
  99. <a href="https://github.com/eclipse/org.aspectj/tree/master/tests/features1919/java19">
  100. Pattern matching for switch (preview 3), record patterns (preview 1)
  101. </a>
  102. </li>
  103. <li>
  104. <a href="https://github.com/eclipse/org.aspectj/tree/master/tests/features1920/java20">
  105. Pattern matching for switch (preview 4), record patterns (preview 2)
  106. </a>
  107. </li>
  108. <li>
  109. Please note that presently there is no specific sample code for virtual threads and structured concurrency in the
  110. AspectJ code base, because these are just new APIs, no Java language features. You can find sample code for these
  111. concurrency features elsewhere, e.g. in the corresponding JEPs. In AspectJ, they should just work transparently
  112. like any other Java API.
  113. </li>
  114. </ul>
  115. <h2>Other changes and bug fixes</h2>
  116. <ul>
  117. <li>
  118. About a dozen bugs have been fixed, some of them quite old. See "list of issues addressed" further above and follow
  119. the link to GitHub to find out if your issue is among them.
  120. </li>
  121. </ul>
  122. <h2>AspectJ usage hints</h2>
  123. <h3>AspectJ compiler build system requirements</h3>
  124. <p>
  125. Since 1.9.7, the AspectJ compiler <tt>ajc</tt> (contained in the <tt>aspectjtools</tt> library) no longer works on
  126. JDKs 8 to 10. The minimum compile-time requirement is now JDK 11 due to upstream changes in the Eclipse Java Compiler
  127. (subset of JDT Core), which AspectJ is a fork of. You can still compile to legacy target versions as low as Java 1.3
  128. when compiling plain Java code or using plain Java ITD constructs which do not require the AspectJ runtime
  129. <tt>aspectjrt</tt>, but the compiler itself needs JDK 11+. Just like in previous AspectJ versions, both the runtime
  130. <tt>aspectjrt</tt> and the load-time weaver <tt>aspectjweaver</tt> still only require JRE 8+.
  131. </p>
  132. <h3>Use LTW on Java 16+</h3>
  133. <p>
  134. Please note that if you want to use load-time weaving on Java 16+, the weaving agent collides with
  135. <a href="https://openjdk.java.net/jeps/396">JEP 396 (Strongly Encapsulate JDK Internals by Default)</a> and related
  136. subsequent JEPs. Therefore, you need to set the JVM parameter <tt>--add-opens java.base/java.lang=ALL-UNNAMED</tt> in
  137. order to enable aspect weaving. This is due to the fact that the weaver uses internal APIs for which we have not found
  138. an adequate replacement yet when defining classes in different classloaders.
  139. </p>
  140. <h3>Compile with Java preview features</h3>
  141. <p>
  142. For features marked as preview on a given JDK, you need to compile with <tt>ajc --enable-preview</tt> and run with
  143. <tt>java --enable-preview</tt> on that JDK.
  144. </p>
  145. <p>
  146. Please note that you cannot run code compiled with preview features on any other JDK than the one used for
  147. compilation. For example, records compiled with preview on JDK 15 cannot be used on JDK 16 without recompilation. This
  148. is a JVM limitation unrelated to AspectJ. Also, e.g. sealed classes are preview-1 on JDK 15 and preview-2 on JDK 16.
  149. You still need to recompile, no matter what.
  150. </p>
  151. <hr>
  152. <p>
  153. <b>Available:</b> 1.9.20 on 16-Aug-2023
  154. </p>
  155. </body>
  156. </html>