不能用参数spring boot参数化

hfyxw5xn  于 2021-06-15  发布在  Cassandra
关注(0)|答案(1)|浏览(297)
package com.ksfe.auditlog.repository;

import org.springframework.data.cassandra.repository.CassandraRepository;

import com.ksfe.auditlog.model.Customer;

public interface CustomerRepository extends CassandraRepository<Customer> {

}

其中错误显示为cassandrarepository类型的参数数目不正确;它不能用参数参数化

gcmastyq

gcmastyq1#

改变这个 public interface CustomerRepository extends CassandraRepository<Customer>public interface CustomerRepository extends CassandraRepository<Customer,Integer> 同时添加id参数。
注意:integer/long取决于id类型。

相关问题