I want to changing test tool from postman to jmeter.
Usual body format was raw-json, I did well without any problems. But this case I should change form-data.
First, Postman confirmed response(return 200) and data check in db(maria-db). But it continues to fail in jmeter.
Below is the data I saved in postman. enter image description here
I configured jmeter as shown in the picture, but it doesn't work. Help me enter image description here
I changed config many time.



It looks like a copy-paste issue, you're sending an incomplete request. Also it doesn't look like a valid JSON to me.
You might also need to add a HTTP Header Manager and configure it to send Content-Type header with the value of
application/jsonIn general if your request can be successfully executed in Postman nothing prevents you from just recording it using JMeter's HTTP(S) Test Script Recorder
Configure Postman to use JMeter as the proxy
Import JMeter's certificate into Postman
Run your request in Postman - JMeter will generate the relevant HTTP Request sampler which can be replayed later on.