Spring boot test @Transactional not saving
问题 I'am trying to do a simple Integration test using Spring Boot Test in order to test the e2e use case. My test does not work because I'am not able to make the repository saving data, I think I have a problem with spring contexts ... This is my Entity: @Entity @Getter @Setter @NoArgsConstructor @AllArgsConstructor public class Person { @Id private int id; private String name; } This is the Person repository: @Repository public interface PersonRepository extends JpaRepository<Person, Integer> {