Is there springboot certification we can do?

|
Debiprasad Dash 2022-07-02 11:54:53
D_i_S_h_A…… 2022-07-02 11:44:13
Thos one solution

B

Vijay Patil 2022-07-02 12:13:54
springbootmicroservices-65947.jpg

Vijay Patil 2022-07-02 12:14:27
Vijay Patil 2022-07-02 12:13:54

Please help me to solve this error

luseefr 2022-07-02 12:19:59
create an single array of mixed data(integer boolean,string,character etc).later separate them out into specific array using java
luseefr 2022-07-02 12:20:44
anyone can help me with is problem statement
sukrit_98 2022-07-02 12:41:43
Is there springboot certification we can do?
thealekss 2022-07-02 12:54:54
Hi to everyone. Why does hibernate ovverides my Ids?
thealekss 2022-07-02 12:55:45
I have written some junit tests and in @BeforeEach method I insert entity with specified Ids
thealekss 2022-07-02 12:56:00
But hibernate inserts with its own ids
Saravana Pandiyan 2022-07-02 14:11:58
D_i_S_h_A…… 2022-07-02 11:37:38
Answer of this one?

B

v_lan1337 2022-07-02 15:16:01
thealekss 2022-07-02 12:54:54
Hi to everyone. Why does hibernate ovverides my Ids?

Store the values as objects (String, Integer, etc – i.e. non-primitives).
And, loop through them & store them in respective arrays (int array, string array, etc) by checking whether it’s an instance of that particular datatype (using instanceOf()).

Better still, create a class with 2 fields: 1. value 2. it’s datatype. And, create an array of objects of the above class. Then you can store them in respective arrays based on the datatype field.

v_lan1337 2022-07-02 15:27:04
Vijay Patil 2022-07-02 12:13:54

probably your jdk and jre versions mismatch. If you haven’t configured a jdk/jre exclusively in pom.xml, check the buildpath.

thealekss 2022-07-02 15:30:25
I have a table containing ids of second table. How can delete all rows of second table containing ids in table1
thealekss 2022-07-02 15:31:17
I mean, table 1 is just keeping primary keys of second table for delete
thealekss 2022-07-02 15:31:54
I want to write a query to delete all rows from table 2 that have id in table 1
thealekss 2022-07-02 15:33:33
delete from Preference p (table2)
where exists (select 1 from PreferenceToDelete(table 1) ptd
where p.id = ptd.prefId)
thealekss 2022-07-02 15:33:47
This query works but i dont like perfomance
thealekss 2022-07-02 15:34:38
I know there is a solution with inner join
amrulfarooqui 2022-07-02 18:32:22
thealekss 2022-07-02 15:34:38
I know there is a solution with inner join

Add cascading property of Jpa

Souvik Das 2022-07-02 18:32:23
Hi, Can anyone provide me any repo for spring boot oauth2 through which I can implement signup of new user and retrieve jwt token using /login endpoint with role based @EnableAuthorizationserver in one MicroService and use the produced jwt token to another @Enableresourceserver MicroService using jks. I am stuck for past 7 days
Yogesh 2022-07-02 18:59:32
Hi All… has anyone given coding game test for CA Bank Singapore recently ??
hey_rmi 2022-07-02 19:34:37
Can someone guide me on how can start to learn spring boot.

YouTube has resources but its all scattered. I am having a hard time understanding. Is there any organised way?

Sakshi 2022-07-02 19:36:10
springbootmicroservices-66002.jpg
What’s wrong in that code ..I want sorted array only
Sakshi 2022-07-02 19:43:08
Y??
Sakshi 2022-07-02 19:43:21
I am comparing 2 same array
Sakshi 2022-07-02 19:43:41
Instead of taking same array??
Sakshi 2022-07-02 19:44:37
Okay I will try by this one
Utkarsh_kumar 2022-07-02 20:57:40
Watch “Real Racing 3 | GT Racing Exhibition” on YouTube

Real Racing 3 | GT Racing ExhibitionYouTube
Mr_Adwern 2022-07-02 21:12:38
hey_rmi 2022-07-02 19:34:37
Can someone guide me on how can start to learn spring boot.

YouTube has resources but its all scattered. I am having a hard time understanding. Is there any organised way?

The online docs is very well made

Mr_Adwern 2022-07-02 21:12:46
Search spring.io docs
|