У меня есть приложение, в котором есть лиги, игроки и команды. Приложение позволяет клиентам создать лигу с командами и игроками в этих командах.
Позже, клиент может изменить лигу, добавив новую команду с игроками. В этот момент клиент получает неожиданную ошибку проверки из моего приложения. Ошибка говорит о том, что список новых игроков не может быть нулевым, даже если клиент четко отправил список новых игроков, принадлежащих новой команде.
Вот сущности:
@Entity
@Data
public class League {
@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
private Long id;
private String name;
@OneToMany(cascade=CascadeType.ALL, orphanRemoval=true)
@JoinColumn(name="leagueId", nullable=false)
@Valid
@NotNull
private List<Team> teams;
}
@Entity
@Data
public class Team {
@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
private Long id;
private String name;
@OneToMany(cascade=CascadeType.ALL, orphanRemoval=true)
@JoinColumn(name="teamId", nullable=false)
@Valid
@NotNull
private List<Player> players;
}
@Entity
@Data
public class Player {
@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
private Long id;
private String name;
}
Вот мой интеграционный тест, который воспроизводит проблему:
@RunWith(SpringRunner.class)
@SpringBootTest
@Transactional
public class LeagueSaveTest {
@Autowired
private LeagueRepository repo;
@Test
public void updateLegaue() {
Player ramsey = new Player();
ramsey.setId(1L);
ramsey.setName("Aaron Ramsey");
Team arsenal = new Team();
arsenal.setId(1L);
arsenal.setName("Arsenal");
arsenal.setPlayers(Arrays.asList(ramsey));
Player hazard = new Player();
hazard.setName("Eden Hazard");
Team chelsea = new Team();
chelsea.setName("Chelsea");
chelsea.setPlayers(Arrays.asList(hazard));
League premier = new League();
premier.setId(1L);
premier.setName("Premier");
premier.setTeams(Arrays.asList(arsenal, chelsea));
repo.save(premier);
}
}
А вот ошибка проверки, которую я получаю:
INFO 16136 --- [ main] o.s.t.c.transaction.TransactionContext : Rolled back transaction for test: [DefaultTestContext@557caf28 testClass = LeagueSaveTest, testInstance = com.example.service.LeagueSaveTest@133d0471, testMethod = updateLegaue@LeagueSaveTest, testException = javax.validation.ConstraintViolationException: Validation failed for classes [com.example.domain.Team] during persist time for groups [javax.validation.groups.Default, ]
List of constraint violations:[
ConstraintViolationImpl{interpolatedMessage='must not be null', propertyPath=players, rootBeanClass=class com.example.domain.Team, messageTemplate='{javax.validation.constraints.NotNull.message}'}
], mergedContextConfiguration = [WebMergedContextConfiguration@408d971b testClass = LeagueSaveTest, locations = '{}', classes = '{class com.example.LeagueApplication}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true}', contextCustomizers = set[org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@371a67ec, org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@1a3869f4, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@63440df3, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer@569cfc36], resourceBasePath = 'src/main/webapp', contextLoader = 'org.springframework.boot.test.context.SpringBootContextLoader', parent = [null]], attributes = map['org.springframework.test.context.web.ServletTestExecutionListener.activateListener' -> true, 'org.springframework.test.context.web.ServletTestExecutionListener.populatedRequestContextHolder' -> true, 'org.springframework.test.context.web.ServletTestExecutionListener.resetRequestContextHolder' -> true]]
Почему я получаю эту ошибку проверки, хотя во всех командах есть хотя бы один игрок?