Skip to content

Instantly share code, notes, and snippets.

@gturi
Created May 7, 2024 10:25
Show Gist options
  • Save gturi/f7001c27c45d154ced132ed4c05b1a17 to your computer and use it in GitHub Desktop.
Save gturi/f7001c27c45d154ced132ed4c05b1a17 to your computer and use it in GitHub Desktop.
Nice configuration of maven compiler plugin

Nice configuration of maven compiler plugin

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.12.1</version>
            <configuration>
                <source>${java.version}</source>
                <target>${java.version}</target>
                <release>${java.version}</release>
                <parameters>true</parameters>
                <annotationProcessorPaths>
                    <path>
                        <groupId>org.projectlombok</groupId>
                        <artifactId>lombok</artifactId>
                        <version>${lmcl0.dep.version.lombok}</version>
                    </path>
                    <path>
                        <groupId>org.projectlombok</groupId>
                        <artifactId>lombok-mapstruct-binding</artifactId>
                        <version>0.2.0</version>
                    </path>
                    <path>
                        <groupId>org.mapstruct</groupId>
                        <artifactId>mapstruct-processor</artifactId>
                        <version>${lmcl0.dep.version.mapstruct}</version>
                    </path>
                </annotationProcessorPaths>
            </configuration>
        </plugin>
    </plugins>
</build>

Notes

<parameters>true</parameters>

Stores formal parameter names of constructors and methods in the generated class file so that the method java.lang.reflect.Executable.getParameters from the Reflection API can retrieve them. (https://docs.oracle.com/en/java/javase/17/docs/specs/man/javac.html#option-parameters)

This is pretty useful to reduce boilerplate code when designing APIs, if expected request names are the same as java method argument names.

Without <parameters>true</parameters>:

@GetMapping(path = "/store/{storeId}/pet")
public ResponseEntity<List<Pet>> getStorePets(
    @PathVariable(name = "storeId") String storeId,
    @RequestParam(name = "petName") String petName) {
    // implementation
}

With <parameters>true</parameters>:

@GetMapping(path = "/store/{storeId}/pet")
public ResponseEntity<List<Pet>> getStorePets(
    @PathVariable String storeId,
    @RequestParam String petName) {
    // implementation
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment