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-1.9.9.adoc 5.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. = AspectJ 1.9.9
  2. :doctype: book
  3. :leveloffset: +1
  4. = AspectJ 1.9.9.1
  5. _© Copyright 2022 Contributors. All rights reserved._
  6. _Release info: 1.9.9.1 available 31-Mar-2022_
  7. Bugfix release for some compiler options related to the Java Platform Module System (JPMS) which were not working, most
  8. importantly `--add-modules`, `--add-exports` and `--add-reads`. See
  9. https://github.com/eclipse-aspectj/aspectj/issues/145[issue #145].
  10. This probably was broken for a long time. AspectJ still is not boasting extensive JPMS support or test coverage, but
  11. this improvement seems substantial enough to justify a minor release, instead of keeping users waiting for the next
  12. regular release.
  13. = AspectJ 1.9.9
  14. _© Copyright 2022 Contributors. All rights reserved._
  15. _Release info: 1.9.9 available 24-Mar-2022_
  16. Please note that Bugzilla for issue management is deprecated and new issues should be filed as
  17. https://github.com/eclipse-aspectj/aspectj/issues/new[GitHub issues]. The list of issues addressed for 1.9.9 can be found
  18. here:
  19. * https://github.com/eclipse-aspectj/aspectj/issues?q=is%3Aissue+is%3Aclosed++milestone%3A1.9.9[GitHub 1.9.9]
  20. * https://github.com/eclipse-aspectj/aspectj/issues?q=is%3Aissue+is%3Aclosed++milestone%3A1.9.9.1[GitHub 1.9.9.1]
  21. * 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[Bugzilla 1.9.9]
  22. == New features
  23. AspectJ 1.9.9 supports https://openjdk.java.net/projects/jdk/18/[Java 18] and its final and preview features, such as:
  24. * Pattern matching for `switch` (preview 2)
  25. == Improvements
  26. [[async_proceed]]
  27. In annotation style aspects, asynchronous `proceed()` calls in `@Around` advice now works in threads created from within
  28. the advice. Previously, this was only working in native syntax aspects. There is still a limitation with regard to
  29. asynchronous proceed, if you do not create the thread in the advice but want to use e.g. an `ExecutorService` with its
  30. own thread pool. This still is not working in annotation style aspects, only in native syntax ones.
  31. See https://github.com/eclipse-aspectj/aspectj/issues/128[issue #128] and
  32. https://github.com/eclipse-aspectj/aspectj/pull/132[pull request #132] for more details.
  33. == Code examples
  34. You can find some sample code in the AspectJ test suite under the respective AspectJ version in which the features were
  35. first supported (possibly as JVM preview features):
  36. * https://github.com/eclipse-aspectj/aspectj/tree/master/tests/features198/java17[Pattern matching for switch, preview 1]
  37. * https://github.com/eclipse-aspectj/aspectj/tree/master/tests/features199/java18[Pattern matching for switch, preview 2]
  38. * https://github.com/eclipse-aspectj/aspectj/tree/master/tests/bugs199/github_128[Asynchronous proceed in native vs.
  39. annotation style syntax]
  40. == Other changes and bug fixes
  41. * Fix a bug which led to ``NullPointerException``s, if too many JAR archives were on the classpath. Too many here means
  42. the value of system property `org.aspectj.weaver.openarchives` (1,000 by default). The AspectJ compiler is meant to
  43. close archives upon cache exhaustion and then re-open them, if it needs them again later. Re-opening was broken, but
  44. now the compiler works reliably even for cache sizes as small as 20. See
  45. https://github.com/eclipse-aspectj/aspectj/issues/125[issue #125].
  46. * Improvements for `if()` pointcuts in annotation syntax, see issues
  47. https://github.com/eclipse-aspectj/aspectj/issues/115[#115], https://github.com/eclipse-aspectj/aspectj/issues/120[#120],
  48. https://github.com/eclipse-aspectj/aspectj/issues/122[#122].
  49. * Thanks to Andrey Turbanov for several clean code contributions.
  50. == AspectJ usage hints
  51. === AspectJ compiler build system requirements
  52. Since 1.9.8, the AspectJ compiler `ajc` (contained in the `aspectjtools` library) no longer works on JDKs 8 to 10. The
  53. minimum compile-time requirement is now JDK 11 due to upstream changes in the Eclipse Java Compiler (subset of JDT
  54. Core), which AspectJ is a fork of. You can still compile to legacy target versions as low as Java 1.3 when compiling
  55. plain Java code or using plain Java ITD constructs which do not require the AspectJ runtime `aspectjrt`, but the
  56. compiler itself needs JDK 11+. Just like in previous AspectJ versions, both the runtime `aspectjrt` and the load-time
  57. weaver `aspectjweaver` still only require JRE 8+.
  58. === Use LTW on Java 16+
  59. Please note that if you want to use load-time weaving on Java 16+, the weaving agent collides with
  60. https://openjdk.java.net/jeps/396[JEP 396 (Strongly Encapsulate JDK Internals by Default)]. Therefore, you need to set
  61. the JVM parameter `--add-opens java.base/java.lang=ALL-UNNAMED` in order to enable aspect weaving. This is due to the
  62. fact that the weaver uses internal APIs for which we have not found an adequate replacement yet when defining classes
  63. in different classloaders.
  64. === Compile with Java preview features
  65. For features marked as preview on a given JDK, you need to compile with `ajc --enable-preview` and run with
  66. `java --enable-preview` on that JDK.
  67. Please note, that you cannot run code compiled with preview features on any other JDK than the one used for compilation.
  68. For example, records compiled with preview on JDK 15 cannot be used on JDK 16 without recompilation. This is a JVM
  69. limitation unrelated to AspectJ. Also, e.g. sealed classes are preview-1 on JDK 15 and preview-2 on JDK 16. You still
  70. need to recompile, no matter what.