Inspectopedia 2024.3 Help

Incorrect repository method parameter

Reports incorrect repository method parameter types.

Locating this inspection

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
Via Settings dialog

Path to the inspection settings via IntelliJ Platform IDE Settings dialog, when you need to adjust inspection settings directly from your IDE.

Settings or Preferences | Editor | Inspections | Jakarta Data | Jakarta Data

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:

IntelliJ IDEA 2024.3, Qodana for JVM 2024.3,

Can be installed with plugin:

Jakarta EE: Data, 243.23126

Last modified: 03 December 2024