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-199.html 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
  2. <html>
  3. <head>
  4. <title>AspectJ 1.9.9 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.9</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.9 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.9">here for Bugzilla</a>
  23. and <a href="https://github.com/eclipse/org.aspectj/issues?q=is%3Aissue+is%3Aclosed++milestone%3A1.9.9">here for GitHub issues</a>.
  24. </p>
  25. <h2>New features</h2>
  26. <p>
  27. AspectJ 1.9.9 supports <a href="https://openjdk.java.net/projects/jdk/18/">Java 18</a> and its final and preview
  28. features, such as:
  29. </p>
  30. <ul>
  31. <li>Pattern matching for <tt>switch</tt> (preview 2)</li>
  32. </ul>
  33. <h2>Improvements</h2>
  34. <h2>Code examples</h2>
  35. <p>
  36. You can find some sample code in the AspectJ test suite under the respective AspectJ version in which the features
  37. were first supported (possibly as JVM preview features):
  38. </p>
  39. <ul>
  40. <li>
  41. <a href="https://github.com/eclipse/org.aspectj/tree/master/tests/features198/java17">
  42. Pattern matching for switch, preview 1
  43. </a>
  44. </li>
  45. <li>
  46. <a href="https://github.com/eclipse/org.aspectj/tree/master/tests/features199/java18">
  47. Pattern matching for switch, preview 2
  48. </a>
  49. </li>
  50. </ul>
  51. <h2>Other changes and bug fixes</h2>
  52. <ul>
  53. <li>
  54. Fix a bug which led to <tt>NullPointerException</tt>s if too many JAR archives were on the classpath. Too many here
  55. means the value system property <tt>org.aspectj.weaver.openarchives</tt> (1,000 by default). The AspectJ compiler is
  56. meant to close archives upon cache exhaustion and then re-open them if it needs them again later. Re-opening was
  57. broken, now the compiler works reliably even for cache sizes as small as 20. See issue
  58. <a href="https://github.com/eclipse/org.aspectj/issues/125">#125</a>.
  59. </li>
  60. <li>
  61. Improvements for <tt>if()</tt> pointcuts in annotation syntax, see issues
  62. <a href="https://github.com/eclipse/org.aspectj/issues/115">#115</a>,
  63. <a href="https://github.com/eclipse/org.aspectj/issues/120">#120</a>,
  64. <a href="https://github.com/eclipse/org.aspectj/issues/122">#122</a>.
  65. </li>
  66. <li>
  67. Thanks to Andrey Turbanov for several clean code contributions.
  68. </li>
  69. </ul>
  70. <h2>AspectJ usage hints</h2>
  71. <h3>AspectJ compiler build system requirements</h3>
  72. <p>
  73. Since 1.9.7, the AspectJ compiler <tt>ajc</tt> (contained in the <tt>aspectjtools</tt> library) no longer works on
  74. JDKs 8 to 10. The minimum compile-time requirement is now JDK 11 due to upstream changes in the Eclipse Java Compiler
  75. (subset of JDT Core), which AspectJ is a fork of. You can still compile to legacy target versions as low as Java 1.3
  76. when compiling plain Java code or using plain Java ITD constructs which do not require the AspectJ runtime
  77. <tt>aspectjrt</tt>, but the compiler itself needs JDK 11+. Just like in previous AspectJ versions, both the runtime
  78. <tt>aspectjrt</tt> and the load-time weaver <tt>aspectjweaver</tt> still only require JRE 8+.
  79. </p>
  80. <h3>Use LTW on Java 16+</h3>
  81. <p>
  82. Please note that if you want to use load-time weaving on Java 16+, the weaving agent collides with
  83. <a href="https://openjdk.java.net/jeps/396">JEP 396 (Strongly Encapsulate JDK Internals by Default)</a> and related
  84. subsequent JEPs. Therefore, you need to set the JVM parameter <tt>--add-opens java.base/java.lang=ALL-UNNAMED</tt> in
  85. order to enable aspect weaving. This is due to the fact that the weaver uses internal APIs for which we have not found
  86. an adequate replacement yet when defining classes in different classloaders.
  87. </p>
  88. <h3>Compile with Java preview features</h3>
  89. <p>
  90. For features marked as preview on a given JDK, you need to compile with <tt>ajc --enable-preview</tt> and run with
  91. <tt>java --enable-preview</tt> on that JDK.
  92. </p>
  93. <p>
  94. Please note that you cannot run code compiled with preview features on any other JDK than the one used for
  95. compilation. For example, records compiled with preview on JDK 15 cannot be used on JDK 16 without recompilation. This
  96. is a JVM limitation unrelated to AspectJ. Also, e.g. sealed classes are preview-1 on JDK 15 and preview-2 on JDK 16.
  97. You still need to recompile, no matter what.
  98. </p>
  99. <hr>
  100. <p>
  101. <b>Available:</b> 1.9.9 available DD-MMM-2022
  102. </p>
  103. </body>
  104. </html>