選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

IDE.md 7.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. # Setting up an AspectJ development environment
  2. _by Alexander Kriegisch, 2021-08-05_
  3. AspectJ, being an Eclipse project, can of course be used in the Eclipse IDE for Java developers, if you also install the
  4. AspectJ Development Tools (AJDT). IntelliJ IDEA also offers AspectJ and Spring AOP support. Regarding build tools, there
  5. are AspectJ plugins for Maven, Gradle and Ant.
  6. Of course, you can use and other IDE and build tool or simply use your trusted text editor of choice and compile using
  7. the AspectJ Compiler _ajc_ from the command line.
  8. Please refer to the [AspectJ Development Environment Guide](https://www.eclipse.org/aspectj/doc/next/devguide/printable.html)
  9. for more details about on-board AspectJ tools, such as _ajc_ (compiler), _ajdoc_ (aspect-enriched Javadoc), _aj_
  10. (load-time weaving helper) as well as basic information about load-time weaving configuration and the built-in Ant task
  11. for AspectJ.
  12. ## IDE support
  13. We are going to focus on the two IDEs the author of this document is acquainted with, Eclipse and IntelliJ IDEA. That
  14. does not mean that others such as NetBeans or the increasingly popular editor-on-steroids Visual Studio Code might not
  15. also be excellent choices, but I simply do not know them, sorry.
  16. ### Eclipse
  17. If you install [AspectJ Development Tools (AJDT)](https://www.eclipse.org/ajdt/), you can use AspectJ in the Eclipse
  18. Java IDE. For the last few years, AJDT has rather been kept alive than actively developed, but still it works nicely for
  19. the usual tasks, such as writing aspects in both native and annotation-style syntax, viewing cross-references between
  20. aspects and Java code, applying all sorts of weaving strategies (compile-time weaving, post-compile binary weaving,
  21. load-time weaving) and with an additional m2e (Maven to Eclipse) connector also for importing and refreshing from
  22. projects using AspectJ Maven Plugin.
  23. #### AspectJ Development Tools (AJDT)
  24. Use an update site corresponding to your Eclipse version (minimal version listed):
  25. * Eclipse 2022-12 (4.26), AspectJ 1.9.19, Java 19: https://download.eclipse.org/tools/ajdt/426/dev/update
  26. * Eclipse 2022-03 (4.23), AspectJ 1.9.19, Java 19: https://download.eclipse.org/tools/ajdt/423/dev/update
  27. * Eclipse 2021-09 (4.21), AspectJ 1.9.8, Java 17: https://download.eclipse.org/tools/ajdt/421/dev/update
  28. * Eclipse 2021-03 (4.19), AspectJ 1.9.7, Java 16: https://download.eclipse.org/tools/ajdt/419/dev/update
  29. * Eclipse 2018-12 (4.10), AspectJ 1.9.6, Java 14: https://download.eclipse.org/tools/ajdt/410/dev/update
  30. * For older versions, please refer to https://www.eclipse.org/ajdt/downloads (page was not updated in a long time,
  31. and I have no write access).
  32. #### Maven to Eclipse (m2e) connector
  33. The connector between AspectJ Maven Plugin and AJDT has not been maintained by the AspectJ team for some years, but
  34. there is a fairly up-to-date [fork by Miika Vesti (joker1)](https://github.com/joker1/m2eclipse-ajdt) with the following
  35. update sites:
  36. * Eclipse 2022-12 (4.26): https://aspectj.dev/eclipse/m2eclipse-ajdt/eclipse-2022-12/
  37. * Eclipse 2020-12 (4.18): https://repo.t5.fi/public/eclipse/m2eclipse-ajdt/eclipse-2020-12/
  38. * Eclipse 2019-06 (4.12): https://repo.t5.fi/public/eclipse/m2eclipse-ajdt/eclipse-2019-06/
  39. ### IntelliJ IDEA
  40. IDEA is a commercial IDE by JetBrains, which also has a free Community Edition. The author of this guide uses a
  41. complementary Ultimate Edition provided by JetBrains (thank you!), because he is an active open source developer (ask
  42. them if you are eligible, too). If you want to use the Ultimate Edition for commercial purposes, however, of course you
  43. need to buy it. According to [this resource](https://www.jetbrains.com/help/idea/aspectj.html), the AspectJ plugin is
  44. for the Ultimate Edition only, so probably the plugin is not going to work in the Community Edition. But if you are
  45. using AspectJ in your daytime job, probably you use the Ultimate Edition anyway.
  46. Make sure that the following plugins are active:
  47. * AOP Pointcut Language (bundled): basic AspectJ and Spring AOP pointcut syntax support (annotation style)
  48. * AspectJ (marketplace, author JetBrains): native AspectJ support
  49. If the Maven support bundled into IntelliJ IDEA is active as well, Maven projects using the AspectJ Maven Plugin will
  50. also be imported correctly. I never tested with any of the Gradle plugins or the AspectJ Ant task because I am a Maven
  51. user, so please try for yourself if those combinations are supported.
  52. ## Build tools
  53. ### Maven
  54. If you want to build your AspectJ projects with Maven, use [AspectJ Maven Plugin](https://github.com/dev-aspectj/aspectj-maven-plugin)
  55. by AspectJ.dev, artifact ID `dev.aspectj:aspectj-maven-plugin`. It is a fork of the original plugin by MojoHaus, which
  56. was inactive for 3.5 years and only recently (2021-07-30) had a new release. Because the AspectJ.dev version (maintained
  57. by AspectJ contributor Alexander Kriegisch) has more features, we recommend using it instead of the original for
  58. original's sake.
  59. ### Gradle
  60. In contrast to Maven, there is no de-facto standard build plugin for Gradle, but a bunch of more or less well-maintained
  61. plugins with a more or less complete feature set. I am not a Gradle user, but when answering related questions on
  62. StackOverflow, I got the impression that [Freefair by Lars Grefer](https://docs.freefair.io/gradle-plugins/current/reference/)
  63. is the one I want to recomment because of its good documentation, active development and feature set. It could well be
  64. or become for the Gradle ecosystem what AspectJ Maven is for the Maven one. At the time of writing this, the most recent
  65. milestone is [6.1.0-m3](https://docs.freefair.io/gradle-plugins/6.1.0-m3/reference/).
  66. ### Ant
  67. As mentioned in the introduction, AspectJ features its own Ant task, which is described in
  68. [this chapter](https://www.eclipse.org/aspectj/doc/next/devguide/printable.html#antTasks) of the Development Environment
  69. Guide.
  70. ### Command line
  71. If you wish to install AspectJ in a separate directory and use it from the command line without any extra build tools,
  72. feel free to download the **AspectJ installer**. It is and executable JAR installer. It requires Java and possibly admin
  73. rights, if e.g. under Windows you want to install AspectJ to _C:/Program Files/AspectJ_. You execute it from a command
  74. prompt via `java -jar installer-<version>.jar` and select your installation options. Then you add `<ASPECTJ_HOME>/bin`
  75. to your path and are good to go. You can now call tools like the Aspectj compiler `ajc` or the AspectJ documentation
  76. generator `ajdoc` (similar to Javadoc) from the command line.
  77. You can find older installer versions until 1.9.6 on the [AspectJ website](https://www.eclipse.org/aspectj/downloads.php),
  78. more recent ones are attached to AspectJ [GitHub releases](https://github.com/eclipse/org.aspectj/releases) as
  79. _aspectj-*jar_.
  80. ## Biased recommendation
  81. Feel free to be skeptical, because the author has both IDE and build tool biases, but I am recommending Maven as a build
  82. tool, AspectJ Maven as a build plugin and then either of Eclipse or IDEA as integrated development environments (IDEs).
  83. Why? Because Maven + (Eclipse or IDEA) probably has the most complete tooling and best end-to-end user experience for
  84. AspectJ developers. Because I am also by far the most active AspectJ and Spring AOP supporter on StackOverflow, you also
  85. have better chances to receive spot-on answers than if e.g. you ask why your Ant or Gradle build does not work so nicely
  86. in NetBeans or VS Code. But by all means, please do choose whichever combination of tools is the prescribed standard in
  87. your work environment or simply your personal pereference. I believe that diversity is good. 🙂