Delete Not Working with JpaRepository

前端 未结 12 2033
情书的邮戳
情书的邮戳 2020-12-07 11:55

I have a spring 4 app where I\'m trying to delete an instance of an entity from my database. I have the following entity:

@Entity
public class Token impleme         


        
12条回答
  •  春和景丽
    2020-12-07 12:43

    I've the same problem, test is ok but on db row isn't deleted.

    have you added the @Transactional annotation to method? for me this change makes it work

提交回复
热议问题