Skip to content

Tag: spring-boot

JOOQ With Oracle: ORA-00911: invalid character

I am using JOOQ With Oracle 19. In running a Simple query, it is giving invalid character below. Not sure why its creating quotes ‘ either. Java and stack trace SQL below. How can this be fixed for a simple query? It compiles fine however it running produces error. Java: Console Log I copied the SQL que…

CST to UTC conversion in java

This is my class.. here i am changing the time zone CST to UTC so its adding +5 hrs because of its adding 5hrs its changing the date 25-26 to 25-27 .. but i want the output same as 25-26 same even after the time zone conversion… please anyone help me out struck on this issue for 2 days… for

How to store JSON in model – SpringBoot

Have JSON that looks like this: I should save it to next model class: In gameDataResponse function I have to save gameId value from node to variable gameId but I am not sure if I am doing it right. With above code my variable is still empty. Answer It depends on what the variable node contains. Please try to …