Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

README-198.html 4.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. <p>
  35. For features marked as preview on a given JDK, you need to compile with <tt>ajc --enable-preview</tt> and run with
  36. <tt>java --enable-preview</tt> on that JDK.
  37. </p>
  38. <p>
  39. Please note that you cannot run code compiled with preview features on any other JDK than the one used for
  40. compilation. For example, records compiled with preview on JDK 15 cannot be used on JDK 16 without recompilation. This
  41. is a JVM limitation unrelated to AspectJ. Also, e.g. sealed classes are preview-1 on JDK 15 and preview-2 on JDK 16.
  42. You still need to recompile, no matter what.
  43. </p>
  44. <h2>Improvements</h2>
  45. <p>
  46. The <tt>--release N</tt> compiler option for correct cross-compilation to previous JDK bytecode + API versions is now
  47. supported by AJC. Previously, the option existed (inherited by ECJ) but did not work correctly.
  48. </p>
  49. <h2>Code examples</h2>
  50. <p>
  51. You can find some sample code in the AspectJ test suite under the respective AspectJ version in which the features
  52. were first supported (possibly as JVM preview features):
  53. </p>
  54. <ul>
  55. <li>
  56. <a href="https://github.com/eclipse/org.aspectj/tree/master/tests/features198/compiler_release">
  57. Cross-compilation to legacy JDK
  58. </a>:
  59. An example class which only works correctly on JDK 8 when compiled with <tt>--release 8</tt> due to API changes in
  60. the JDK. Simply <tt>-source 8 -target 8</tt> would not be enough in this case.</li>
  61. <li>
  62. <a href="https://github.com/eclipse/org.aspectj/tree/master/tests/features198/java17">
  63. Pattern matching for switch
  64. </a>
  65. </li>
  66. </ul>
  67. <h2>Using LTW on Java 16+</h2>
  68. <p>
  69. Please note that if you want to use load-time weaving on Java 16+, the weaving agent collides with
  70. <a href="https://openjdk.java.net/jeps/396">JEP 396 (Strongly Encapsulate JDK Internals by Default)</a>. Therefore,
  71. you need to set the JVM parameter <tt>--add-opens java.base/java.lang=ALL-UNNAMED</tt> in order to enable aspect
  72. weaving. This is due to the fact that the weaver uses internal APIs for which we have not found an adequate
  73. replacement yet when defining classes in different classloaders.
  74. </p>
  75. <h2>Other changes and bug fixes</h2>
  76. <ul>
  77. <li>
  78. The AspectJ compiler <tt>ajc</tt> (contained in the <tt>aspectjtools</tt> library) no longer works on JDKs 8 to 10. The minimum
  79. compile-time requirement is now JDK 11 due to upstream changes in the Eclipse Java Compiler (subset of JDT Core),
  80. which AspectJ is a fork of. You can still compile to legacy target versions as low as Java 1.3 when compiling plain
  81. Java code or using plain Java ITD constructs which do not require the AspectJ runtime <tt>aspectjrt</tt>, but the compiler
  82. itself needs JDK 11+. Just like in previous AspectJ versions, both the runtime <tt>aspectjrt</tt> and the load-time weaver
  83. <tt>aspectjweaver</tt> still only require JRE 8+.
  84. </li>
  85. <li>Document build profiles and properties in <i>docs/developer/BUILD.md</i></li>
  86. <li>Add a guide for setting up an AspectJ development environment in <i>docs/developer/IDE.md</i></li>
  87. <li>Allow JAR saving if <tt>-proceedOnError</tt> is specified</li>
  88. </ul>
  89. <p>
  90. Available: 1.9.8 available DD-MMM-2021
  91. </p>
  92. </body>
  93. </html>