Skip to content
Advertisement

Spring POST Method Microservice 500 exception

So, im trying to write a microservice with basic GET POST PUT DELETE commands. Its a Spring Maven Java programm with a mysql server

When I try to post something it works, however if I dont include the Id it returns an exception:

JavaScript

This is weird, because in the mysql console I can Insert a customer without the id, it just autoincrements. Also null works too. Posting however with the Id being null doesn’t work

Here some pieces of my code:

JavaScript
JavaScript
JavaScript

SOLVED solution is:

JavaScript

thanks guys!

Advertisement

Answer

Your model points out that name is the primary key, but it seems like your database model has the id beeing the primary key with probably auto_increment assigned to it.

You should adjust your model accordingly, eg like this:

JavaScript

I’m not sure what strategy is correct with MySQL, but this may help.

If you have a constraint on your name column to be unique you could add an according annotation to it, like this:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement