This is the Repository interface declaration from Spring Data:
Java
public interface Repository<T, ID> {
}Kotlin
interface Repository<T, ID> {
}Select the correct statements about the declaration of the generic types T and ID.
This is the Repository interface declaration from Spring Data:
public interface Repository<T, ID> {
}interface Repository<T, ID> {
}Select the correct statements about the declaration of the generic types T and ID.
Create a free account to access the full topic