|
I've created a method annotated with @RequiredArgsConstructor
public class PushDocumentUseCase implements PushDocumentInputPort {
private final PushDocumentMapper pushDocumentMapper;
private final PushDocumentSharingProviderOutputPort pushDocumentSharingProviderOutputPort;
private final PushDocumentPersistenceGatewayOutputPort pushDocumentPersistenceGatewayOutputPort;
private final PushDocumentPresenterOutputPort pushDocumentPresenterOutputPort;
@Override
@ConstraintArguments
public PushDocumentResult push(String contentMD5) {
//...
}
}According to documentation a However, no one is created. Any ideas about how to debug it? |
Answered by
making
Apr 5, 2024
Replies: 1 comment 2 replies
|
What build tool are you using? |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you are explicitly setting
<annotationProcessorPaths>, I think it is necessary to add