UAST
Incorrect repository method parameter
Warning
Reliability
New
Last modified: 03 December 2024Reports incorrect repository method parameter types.
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
JakartaDataRepositoryMethodParameters
Example:
public class Person {
private int id;
@Column
private String lastname;
@Column
private int age;
}
public interface CustomerRepository extends Repository<Person, Integer> {
List<Person> findByAddress(int lastname); // 'String' type expected
List<Person> deleteByAge(String str); // 'int' type expected
}
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Jakarta EE: Data, 243.23126 |
Thanks for your feedback!
Was this page helpful?