need to handle it when the stock is null
everything works but when the stock == 0 it java.lang.NullPointerException: Cannot invoke "com.example.todoappdeel3.models.OrderProduct.getQuantity()" because "orderProduct" is null
get stuck
109 Replies
⌛
This post has been reserved for your question.
Hey @timo! Please useTIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here./close
or theClose Post
button above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically closed after 300 minutes of inactivity.



id 3 and stock 0 so only happens when stock is 0 but no clue how to fix it
Can you show how you are getting it from the DB?
and check what exactly is null with a debugger
like the payload?
I meant debugging the backend code
when retrieving it
where you get the NPE

ok give me 1 min
Is that where the NPE is thrown?
what is a NPE?
NullPointerException
if(orderProduct.getQuantity() > 0) orderProduct.setQuantity(orderProduct.getQuantity() - 1);
this is the line where it breaks
In that code, use a debugger and check the value of order and product
especially the ids
with the quantity being 0
not used to the debugger just know that is always breaks when the stock is 0
Can you show me the values of the ids in that case (from the debugger)?
As well as the corresponding database entry
like those or different ids?
order.id and product.id in that Java code
but here it just finds the whole thing right so also the ids like evrything that has to do with the product
Well there's something you are not expecting so I'm asking you to check the details that should be there
but do you wanna see my models or dto's ? im confused
set a breakpoint in the
final OrderProduct orderProduct
column
check both order and product
step one line further
and check whether orderProduct
is null
as well as show me the corresponding DB entry
Can you expand product and order?


In the priduct_order table
Is there an entry with both of them being 0?
1*
an entry with both product and order id being wrong

Is this one that works?
no that is just when you place an order the problem is when you are trying to retout
retour
Can you show me the above information of an example that doesn't work?


order product is basically the products in the order but if you retour for example it is -1
So where does the exception occur?
here
Can you place a breakpoint there and debug it?
and is that the code giving you the orderProduct for that?
4 repos in total 1 find user
2 find order id
3 find product id
4 combine the order with the product

Can you please just show me the whole file containing the
if(orderProduct.getQuantity() > 0) orderProduct.setQuantity(orderProduct.getQuantity() - 1);
in a codeblock (not using an image) as well as put a breakpoint in that if?pastebin ok cuz it is too big
then just show the method
the complete method
Now for a product/order combination that's an issue (where you get the NPE), place a breakpoint in
if(orderProduct.getQuantity() > 0) orderProduct.setQuantity(orderProduct.getQuantity() - 1);
and show me:
- orderProduct
- the expanded order
- the expanded product
- the corresponding entry in the DB table (where the quantity is 0 I assume)
And I think I found that problemyeah
just dunno how to fix it XD
You are deleting the entry in the table if the quantity is 0
So when you call
orderProductRepository.findByOrderAndProduct(order, product)
, there is no entry for it in the DBbut how should i fix it then cuz want to delete from the orderproducts

so i can change teh status
You can just change what happens after
orderProductRepository.findByOrderAndProduct(order, product)
What should happen if there's no entry in the DB?it should still work cuz the stock has nothing to do with the retour
what should happen?
"it should work" is not a description of what should happen
it should also be able to sent a product on retour wich has a stok of 0
I have no idea what that means. Does that mean it should send back the same response (with the
Retour.builder()
) and do nothing else with the DB?i mean the onlu thing that changes it the order product not the product itself so
right now it can t find the product so it should just be able to find the product and if you retour the quantity should go down until there are no items in the retour left
and what should happen if there is nothing left?
Should anything change in that case?
then it is just empty and the status changes
ok
So after
final OrderProduct orderProduct = orderProductRepository.findByOrderAndProduct(order, product);
, you can do an if(orderProduct == null)
In that if, you put all the logic that should happen if the quantity is 0
i.e. you do the order.setStatus("retour and empty");
and orderRepository.save(order);
yeah tried that but couldn t get that to work
And then you need to decide what to return in that case
cuz the quantity in the orderproduct in 1 if the stock of the product is 0
I have no idea why that would be a problem
You said you want this to happen when trying to use that endpoint and the quantity is already 0
and that's exactly what the
if
is checkingyeah? but it isn t working im confused lol
- You need to decide what you want to return if it's empty, else it won't work
- I can't help you if you don't tell me what's broken
1 just change the status if it is empty like the other products
2 you know what is broken right?
1 and what do you want the response to be?
2 no, I neither no what exactly you do with the if I told you about nor do I know what happens
can show you an example with a working product
The important thing to know is what should happen if the quantity is 0 already
already meaning before the request
and what should be the response to the user in that case



this should happen if the retour works fine
it breaks with the stock but i don t know excactly either how to fix it cuz otherwise i wouldn t create a post 😅 :boohoo:
What about that changed? What should be sent back to the user?
I could make guesses that would result in you not getting the exception but I'd have no idea whether that's what you actually want
orderproduct == empty when there is no products
order status is retour and empty and in retour there is info
You mean they should get a
Retour
object with status
set to empty?that is the order because if there are no products in orderprodtc that means that the retour is empty and the status changes
Like that?
yeah kinda ig but the thing is that it is not empty because the is a product in the order
so this hdanles it of normally but won t work with 0
I have no idea what that means
If you enter that if, you know there is no entry in the DB so you know the quantity is 0
yeah
but with null it is still in the order id and the quantity gets sent in as 1

orderproduct is 1 while the stock == 0
?
the stock is 0 of the product but the quantity in the order is 1
How is that related to the issue?
because it blocks when the stock is 0 but i still wanna remove the quantity
What blocks if the stock is 0?
What do you want to do if there is no stock but the quantity is nonzero?
Then i Just want it to work like the rest that is the problem
What does that mean? Should it do exactly the same as if it was in stock?
Yeah
Can you show the code?
with the changes you made
I have made none for now
You did that, right?
Why do i want to do that for both?
That's not what I said
You made a change and I asked to see the code with the changes you did so I can see what exactly you are doing
Didn't you add a null check?
where's that?
little bit below
but isn t that sort of double?

If you put it below, you'll still get the NPE
you'd need to put it before
if(orderProduct.getQuantity() > 0) orderProduct.setQuantity(orderProduct.getQuantity() - 1);

like this?
.product(orderProduct.getProduct()) is null
just add that before your
if(orderProduct.getQuantity() > 0) orderProduct.setQuantity(orderProduct.getQuantity() - 1);
Fixed it
The problem lied elsewhere thank you for helping apreciate it !
If you are finished with your post, please close it.
If you are not, please ignore this message.
Note that you will not be able to send further messages here after this post have been closed but you will be able to create new posts.
Thank you is a keyword?
yeah, the bot reacts to it
Post Closed
This post has been closed by <@591288621345275915>.