1.最近在使用spring boot ,在操作數(shù)據(jù)庫時,例如查找時还绘,直接使用findByName(String name )就可以依據(jù)name來在數(shù)據(jù)庫中查找對應(yīng)的數(shù)據(jù)。
2.刪除時,直接可以使用delete(id),依據(jù)id來刪除一條數(shù)據(jù)渗蟹,但是當(dāng)想使用deleteByName(String name)時块饺,需要添加注解赞辩,才能使用。
public interface StudentReposity extends JpaRepository<Student, Integer> {
public List<Student> findByName(String name);
@Transactional
public void deleteByName(String name);
}