Maison > Questions et réponses > le corps du texte
WARNING]
org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.springframework.dao.DataIntegrityViolationException:
lgip
.tb_intention
, CONSTRAINT fk_intention_user
FOREIGN KEY (firm_id
) REFERENCES tb_user
(id
))lgip
.tb_intention
, CONSTRAINT fk_intention_user
FOREIGN KEY (firm_id
) REFERENCES tb_user
(id
)); SQL []; Cannot add or update a child row: a foreign key constraint fails (lgip
.tb_intention
, CONSTRAINT fk_intention_user
FOREIGN KEY (firm_id
) REFERENCES tb_user
(id
)); nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Cannot add or update a child row: a foreign key constraint fails (lgip
.tb_intention
, CONSTRAINT fk_intention_user
FOREIGN KEY (firm_id
) REFERENCES tb_user
(id
))
高洛峰2017-04-18 10:22:27
Le firm_id que vous avez inséré n'a pas d'identifiant correspondant dans la table tb_user. . . . . . .
大家讲道理2017-04-18 10:22:27
La table de clé étrangère effectue une requête de lien gauche sur la table de clé primaire et constate que certains identifiants n'existent pas dans la table de clé primaire. Vous pouvez alors décider de les supprimer ou de les conserver
.