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.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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.</li>
  65. <li>
  66. <a href="https://github.com/eclipse/org.aspectj/tree/master/tests/features198/java17">
  67. Pattern matching for switch
  68. </a>
  69. </li>
  70. </ul>
  71. <h2>Other changes and bug fixes</h2>
  72. <ul>
  73. <li>
  74. The AspectJ compiler <tt>ajc</tt> (contained in the <tt>aspectjtools</tt> library) no longer works on JDKs 8 to 10.
  75. The minimum compile-time requirement is now JDK 11 due to upstream changes in the Eclipse Java Compiler (subset of
  76. JDT Core), which AspectJ is a fork of. You can still compile to legacy target versions as low as Java 1.3 when
  77. compiling plain Java code or using plain Java ITD constructs which do not require the AspectJ runtime
  78. <tt>aspectjrt</tt>, but the compiler itself needs JDK 11+. Just like in previous AspectJ versions, both the runtime
  79. <tt>aspectjrt</tt> and the load-time weaver <tt>aspectjweaver</tt> still only require JRE 8+.
  80. </li>
  81. <li>Document build profiles and properties in <i>docs/developer/BUILD.md</i></li>
  82. <li>Add a guide for setting up an AspectJ development environment in <i>docs/developer/IDE.md</i></li>
  83. <li>
  84. Fix <a href="https://github.com/eclipse/org.aspectj/issues/105">issue #105</a>: Compilation fails when using an
  85. aspect library via <tt>-aspectpath</tt> in combination with introducing an annotation via ITD. This was broken since
  86. version 1.9.5 and fixed in 1.9.8.RC3.
  87. </li>
  88. <li>
  89. Fix <a href="https://github.com/eclipse/org.aspectj/issues/68">issue #68</a>: Correctly process class files
  90. containing <a href="https://openjdk.java.net/jeps/309">dynamic class-file constants (JEP 309)</a>, which were
  91. introduced in Java 11 and broken in AspectJ ever since their introduction in 1.9.2. Java itself currently does not
  92. use "condy" and neither do other widespread JVM languages. Byte code engineering libraries like ASM or Byte Buddy
  93. and some instrumentation tools like JaCoCo can however produce condy code. Therefore, in order to create a
  94. regression test, we actually had to
  95. <a href="https://github.com/eclipse/org.aspectj/blob/de63b63d/tests/bugs198/github_68/Generator.java#L50-L61">
  96. craft a condy class with ASM</a>.
  97. </li>
  98. <li>
  99. Fix <a href="https://github.com/eclipse/org.aspectj/issues/115">issue #115</a>: In annotation-style pointcuts,
  100. <tt>if(false)</tt> and <tt>if(true)</tt> now work as expected and do not require a boolean return value and body for
  101. the <tt>@Pointcut</tt> method.
  102. </li>
  103. <li>
  104. Thanks to Andrey Turbanov for several clean code contributions and to Dmitry Mikhaylov for fixing a potential
  105. concurrency problem.
  106. </li>
  107. </ul>
  108. <h2>AspectJ usage hints</h2>
  109. <h3>Use LTW on Java 16+</h3>
  110. <p>
  111. Please note that if you want to use load-time weaving on Java 16+, the weaving agent collides with
  112. <a href="https://openjdk.java.net/jeps/396">JEP 396 (Strongly Encapsulate JDK Internals by Default)</a>. Therefore,
  113. you need to set the JVM parameter <tt>--add-opens java.base/java.lang=ALL-UNNAMED</tt> in order to enable aspect
  114. weaving. This is due to the fact that the weaver uses internal APIs for which we have not found an adequate
  115. replacement yet when defining classes in different classloaders.
  116. </p>
  117. <h3>Compile with Java preview features</h3>
  118. <p>
  119. For features marked as preview on a given JDK, you need to compile with <tt>ajc --enable-preview</tt> and run with
  120. <tt>java --enable-preview</tt> on that JDK.
  121. </p>
  122. <p>
  123. Please note that you cannot run code compiled with preview features on any other JDK than the one used for
  124. compilation. For example, records compiled with preview on JDK 15 cannot be used on JDK 16 without recompilation. This
  125. is a JVM limitation unrelated to AspectJ. Also, e.g. sealed classes are preview-1 on JDK 15 and preview-2 on JDK 16.
  126. You still need to recompile, no matter what.
  127. </p>
  128. <hr>
  129. <p>
  130. <b>Available:</b> 1.9.8 available DD-MMM-2022
  131. </p>
  132. </body>
  133. </html>