Closed
Description
It would be cool if the nodes representing Spring Data repositories in the Spring outline were polished as follows:
- The root node for the repository looks something like this
@+ 'payments' (Payment<?>) Repository<Payment<?>,PaymentIdentifier> (class)
. This is a lot of detail for a high-level node. I wonder if it should be changed toPaymentRepository (@+ payments)
, i.e.,$typeName (@beanLookup)
. - The individual query methods are currently only listing the names. It would be nice if it were the full signature. So instead of
findByStatus
, it'd befindByStatus(Status) : List<Payment<?>>