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-1919.html 6.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
  2. <html>
  3. <head>
  4. <title>AspectJ 1.9.19 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 2022 Contributors. All rights reserved.</small></div>
  17. <h1>AspectJ 1.9.19</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.19 can be found here:
  22. <ul>
  23. <li><a href="https://github.com/eclipse/org.aspectj/issues?q=is%3Aissue+is%3Aclosed++milestone%3A1.9.19">GitHub 1.9.19</a></li>
  24. <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.19">Bugzilla 1.9.19</a></li>
  25. </ul>
  26. </p>
  27. <h2>New features</h2>
  28. <p>
  29. AspectJ 1.9.19 supports <a href="https://openjdk.java.net/projects/jdk/19/">Java 19</a> and its final, preview and
  30. incubator features, such as:
  31. </p>
  32. <ul>
  33. <li>Record patterns (preview)</li>
  34. <li>Virtual threads (preview)</li>
  35. <li>Pattern matching for <tt>switch</tt> (preview 3)</li>
  36. <li>Structured concurrency (incubator)</li>
  37. </ul>
  38. <p>
  39. Please note that the upstream Eclipse Java Compiler (ECJ) which the AspectJ Compiler (AJC) is a fork of still has some
  40. open issues concerning Java 19 preview feature support, see the list in
  41. <a href="https://github.com/eclipse/org.aspectj/issues/184#issuecomment-1272254940">this comment</a>. AJC therefore
  42. inherits the same problems for the specific cases described in the linked issues.
  43. </p>
  44. <h2>Improvements</h2>
  45. <ul>
  46. <li>
  47. Improve condy (constant dynamic) support. Together with some custom compilation or weaving options, this helps to
  48. avoid a problem when using JaCoCo together with AspectJ, see
  49. <a href="https://github.com/eclipse/org.aspectj/issues/170#issuecomment-1214163297">this comment in #170</a> for
  50. more details.
  51. </li>
  52. </ul>
  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/java17">
  61. Pattern matching for switch (preview 1)
  62. </a>
  63. </li>
  64. <li>
  65. <a href="https://github.com/eclipse/org.aspectj/tree/master/tests/features199/java18">
  66. Pattern matching for switch (preview 2)
  67. </a>
  68. </li>
  69. <li>
  70. <a href="https://github.com/eclipse/org.aspectj/tree/master/tests/features1919/java19">
  71. Pattern matching for switch (preview 3), record patterns (preview 1)
  72. </a>
  73. </li>
  74. <li>
  75. Please note that presently there is no specific sample code for virtual threads and structured concurrency in the
  76. AspectJ code base, because these are just new APIs, no Java language features. You can find sample code for these
  77. concurrency features elsewhere, e.g. in the corresponding JEPs. In AspectJ, they should just work transparently
  78. like any other Java API.
  79. </li>
  80. </ul>
  81. <h2>Other changes and bug fixes</h2>
  82. <ul>
  83. <li>
  84. Fix (or rather work around) an old bug occurring when compiling or weaving code using ITD to declare annotations
  85. with <tt>SOURCE</tt> retention on types, methods, constructors or fields. While declaring such annotations does not
  86. make sense to begin with, at least the AspectJ weaver or compiler should handle the situation gracefully, which now
  87. it does by simply ignoring errors caused by it. See <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=366085">
  88. Bugzilla #366085</a> and <a href="https://github.com/eclipse/org.aspectj/pull/196">pull request #196</a>. Better
  89. than this workaround would be for the compiler or weaver to actually print a warning when meeting source level
  90. annotations in declare statements. Hence, follow-up issue
  91. <a href="https://github.com/eclipse/org.aspectj/issues/201">#201</a> was created.
  92. </li>
  93. <li>
  94. Remove legacy AspectJ Browser code and documentation.
  95. </li>
  96. <li>
  97. Thanks to Andrey Turbanov for several clean code contributions.
  98. </li>
  99. </ul>
  100. <h2>AspectJ usage hints</h2>
  101. <h3>AspectJ compiler build system requirements</h3>
  102. <p>
  103. Since 1.9.7, the AspectJ compiler <tt>ajc</tt> (contained in the <tt>aspectjtools</tt> library) no longer works on
  104. JDKs 8 to 10. The minimum compile-time requirement is now JDK 11 due to upstream changes in the Eclipse Java Compiler
  105. (subset of JDT Core), which AspectJ is a fork of. You can still compile to legacy target versions as low as Java 1.3
  106. when compiling plain Java code or using plain Java ITD constructs which do not require the AspectJ runtime
  107. <tt>aspectjrt</tt>, but the compiler itself needs JDK 11+. Just like in previous AspectJ versions, both the runtime
  108. <tt>aspectjrt</tt> and the load-time weaver <tt>aspectjweaver</tt> still only require JRE 8+.
  109. </p>
  110. <h3>Use LTW on Java 16+</h3>
  111. <p>
  112. Please note that if you want to use load-time weaving on Java 16+, the weaving agent collides with
  113. <a href="https://openjdk.java.net/jeps/396">JEP 396 (Strongly Encapsulate JDK Internals by Default)</a> and related
  114. subsequent JEPs. Therefore, you need to set the JVM parameter <tt>--add-opens java.base/java.lang=ALL-UNNAMED</tt> in
  115. order to enable aspect weaving. This is due to the fact that the weaver uses internal APIs for which we have not found
  116. an adequate replacement yet when defining classes in different classloaders.
  117. </p>
  118. <h3>Compile with Java preview features</h3>
  119. <p>
  120. For features marked as preview on a given JDK, you need to compile with <tt>ajc --enable-preview</tt> and run with
  121. <tt>java --enable-preview</tt> on that JDK.
  122. </p>
  123. <p>
  124. Please note that you cannot run code compiled with preview features on any other JDK than the one used for
  125. compilation. For example, records compiled with preview on JDK 15 cannot be used on JDK 16 without recompilation. This
  126. is a JVM limitation unrelated to AspectJ. Also, e.g. sealed classes are preview-1 on JDK 15 and preview-2 on JDK 16.
  127. You still need to recompile, no matter what.
  128. </p>
  129. <hr>
  130. <p>
  131. <b>Available:</b> 1.9.19 on 21-Dec-2022
  132. </p>
  133. </body>
  134. </html>