sebastiandaschner blog


Released JAX-RS Analyzer v0.4

#jaxrsanalyzer saturday, may 16, 2015

Today I released version 0.4 of the JAX-RS Analyzer. Following main features / improvements have been made:

  • Added a backend in AsciiDoc format

  • Added project information (name, version, etc.) to backends (which are read from Maven when using the Maven plugin)

  • Added analysis of thrown WebApplicationException's in the code

  • Improved analysis of variable types

  • Fixed possible error when using JSR-310 types in request/response bodies

The Maven plugin usage is updated to:

<plugin>
    <groupId>com.sebastian-daschner</groupId>
    <artifactId>jaxrs-analyzer-maven-plugin</artifactId>
    <version>0.4</version>
    <executions>
        <execution>
            <goals>
                <goal>analyze-jaxrs</goal>
            </goals>
            <configuration>
                <!-- Available backends are plaintext (default), swagger and asciidoc -->
                <backend>plaintext</backend>
                <!-- Domain of the deployed project, defaults to example.com -->
                <deployedDomain>example.com</deployedDomain>
            </configuration>
        </execution>
    </executions>
</plugin>

Have a look at the current version.

 

Found the post useful? Subscribe to my newsletter for more free content, tips and tricks on IT & Java: