Astra is a Java tool for analysing and refactoring Java source code.
For example:
- "References to type A should instead reference type B"
- "Callers of method A should add an additional argument B"
- "Find classes which are annotated with A"
Astra has been developed and tested at Alfa to improve the velocity at which large scale refactors may be performed.
- First, please see the Wiki!
- Astra can be run as part of a Java application, using
astra-core
as a dependency and using the refactors it provides. For an illustration of how to do this, please see the README in astra-core. The code can be found in astra-example. - For cases needing a more bespoke approach, astra-core also provides an SPI for writing your own custom
ASTOperation
s. See theastra-core
README for further details. - For very simple cases, there is also a command line interface which exposes a small subset of Astra's refactoring operations. Please see astra-cli for more information.
A simple and common use case is renaming a method, and updating all the callers of that method so that they use the new name. Your IDE is often the best tool for the job, but sometimes this isn't possible. There may be so many modules that manually selecting and opening them is a real pain, or the overall size of the modules may mean that your IDE struggles to open them all at once. This means that sometimes it's easier to just add a new method, deprecate the old one, and leave all the existing callers. The same issues apply to many other refactors, such as renaming a type.
Astra can be used to make changes like these easily, and on a massive scale.
Please see How does Astra work? in the Wiki.
- Java 11
- Eclipse JDT
- JUnit
- log4j
Astra is released under the Apache 2.0 License. Contributions are also made under this license, as per the GitHub terms of service.