diff --git a/docs/generator/jpa.md b/docs/generator/jpa.md index 6f1fdb85..a53e1840 100644 --- a/docs/generator/jpa.md +++ b/docs/generator/jpa.md @@ -910,7 +910,6 @@ domain: type: ResponseEntity imports: - org.springframework.http.ResponseEntity - ``` ### Décorateurs @@ -986,8 +985,33 @@ decorator: description: Droit nécessaire pour pouvoir accéder au endpoint java: annotations: - - "@PreAuthorize(\"hasAuthority('{$0}')\")" + - '@PreAuthorize("hasAuthority(''{$0}'')")' imports: - org.springframework.security.access.prepost.PreAuthorize ``` +### Configuration maven + +Pour ajouter les sources du dossier `javagen` au build, vous pouvez utiliser la configuration suivante : + +```xml + + + org.codehaus.mojo + build-helper-maven-plugin + + + add-source + generate-sources + + add-source + + + + src/main/javagen + + + + + +```