Reports Micronaut Cache annotations where the value of the parameters attribute contains names of undefined method
parameters.
The following annotations are supported:
io.micronaut.cache.annotation.Cacheableio.micronaut.cache.annotation.CachePutio.micronaut.cache.annotation.CacheInvalidateExample:
@CachePut(parameters = "myParameter") // Error: Cannot resolve symbol 'myParameter'
public String cachedMethod(String name_is_not_equal_to_myParameter) {
return "...";
}