AppendMethodAsComment

Appending method names as comment

The @AppendMethodAsComment annotation appends repository method names to MongoDB Find-Queries to simplify the discovery and capture of slow query operations.

Example Usage of @AppendMethodAsComment:

@Collection("customer_repository")
@AppendMethodAsComment
public interface CustomerRepository extends Repository<Customer, UUID> {
}

Last updated