5 questions to ask the interviewer!
18:23
Is this unfair?
16:04
3 ай бұрын
Do these 5 things first
20:38
4 ай бұрын
The thing about serverless...
2:20
npm prank gone wrong.
11:03
4 ай бұрын
BEST JAVA TUTORIAL VIDEO
3:38
Жыл бұрын
Make an HTML Ordered List Fast!
1:01
Пікірлер
@armaan.nagpuri
@armaan.nagpuri 5 сағат бұрын
THat annotation @Load Balancing OMG... I was trying to solve an error of unknown host exception. After watching this video it was solved...
@runner_arora
@runner_arora 23 сағат бұрын
Field authorRepository in io.springbootproject.betterreadsdataloader.BetterReadsDataLoaderApplication required a bean of type 'com.author.AuthorRepository' that could not be found. The injection point has the following annotations: - @org.springframework.beans.factory.annotation.Autowired(required=true) Action: Consider defining a bean of type 'com.author.AuthorRepository' in your configuration.
@BruceWayne_.....
@BruceWayne_..... Күн бұрын
Straight to point
@vanithaguru
@vanithaguru 2 күн бұрын
Hi anyone can help me , how can we connect database by using eclipse ide with spring boot application and api
@dieraven
@dieraven 2 күн бұрын
Thank you 🙂
@dieraven
@dieraven 2 күн бұрын
Got this error after adding the @EnableHystrixDashboard and properties: Caused by: java.lang.IllegalStateException: Failed to introspect Class org.springframework.cloud.netflix.hystrix.dashboard.HystrixDashboardConfiguration
@Roniabhi
@Roniabhi 2 күн бұрын
any one who is watching this video make sure you know run command is deleted for versions after 3.0.0 so you can skip this video as or use `mvn spring:boot run` command
@cormacredmond12345
@cormacredmond12345 2 күн бұрын
Good course (thanks!), but it misses to explain two points which I think most would stumble on. 1) By using a Mono (and delayElement), you're freeing up one thread, but it's still another thread in the JVM that must "delay" (except it's handled by Spring webflux). Same for real I/O operations. There's no magic going on here, I think the video should make that clear. If you have slow blocking code (i.e., a long-lived DB call), you will have a thread blocked somewhere at some point. And if you have 10 of these, you'll have 10 blocked threads (or worse, less than 10 but with subsequent requests queued) -- just for a crude example. 2) Nowhere in this video series did it cover the critically important fact that actually, you get no threading by default unless you specify it somewhere; all rails would be on the same thread. You in your example Fluxes happen to be getting parallel threading, perhaps unknowingly, by using delayElement() (look at the source: return delayElements(delay, Schedulers.parallel())). Without that, everything would be executed sequentially on the same thread that you created the Flux. In reality, nobody will be using anything like the example Fluxes in production code. Crucial methods like runOn(), publishOn(), subscribeOn(), etc., should have been covered -- the whole concept and benefits of Reactor is lost otherwise, IMO. See: projectreactor.io/docs/core/release/reference/#schedulers
@amilasilva7
@amilasilva7 3 күн бұрын
Great video as always 🔥
@iyergh
@iyergh 3 күн бұрын
Love this.
@iyergh
@iyergh 3 күн бұрын
I absolutely love this
@iyergh
@iyergh 3 күн бұрын
This video is so amazing. This explanation is so simple to understand. The way this is broken down with a Java example is just superb. Thank you x 100
@ZillaYT
@ZillaYT 3 күн бұрын
I was doing well until session #29 when adding the embedded Derby DB. I get this on startup. Any clues on how to fix it? Thanks for a great tutorial!!! 2024-05-18T14:07:59.476-04:00 INFO 66638 --- [course-api-data] [ main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) 2024-05-18T14:07:59.700-04:00 WARN 66638 --- [course-api-data] [ main] o.h.t.s.i.ExceptionHandlerLoggedImpl : GenerationTarget encountered exception accepting command : Error executing DDL "create table topic (id varchar(255) not null, desc varchar(255), name varchar(255), primary key (id))" via JDBC [Syntax error: Encountered "desc" at line 1, column 47.] org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL "create table topic (id varchar(255) not null, desc varchar(255), name varchar(255), primary key (id))" via JDBC [Syntax error: Encountered "desc" at line 1, column 47.] at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:94) ~[hibernate-core-6.4.4.Final.jar:6.4.4.Final] at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlString(AbstractSchemaMigrator.java:574) ~[hibernate-core-6.4.4.Final.jar:6.4.4.Final] at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlStrings(AbstractSchemaMigrator.java:514) ~[hibernate-core-6.4.4.Final.jar:6.4.4.Final] at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.createTable(AbstractSchemaMigrator.java:315) ~[hibernate-core-6.4.4.Final.jar:6.4.4.Final] at org.hibe
@ZillaYT
@ZillaYT 3 күн бұрын
I'm using a later version of Spring Boot, and the work "desc" is a keyword. So I just changed it to "description" and it worked.
@pkumar176
@pkumar176 3 күн бұрын
super content sir
@in_tyler_we_trust
@in_tyler_we_trust 4 күн бұрын
Jwt bhi jaat h
@shubhamchouksey9904
@shubhamchouksey9904 4 күн бұрын
Hi @Java brains can you give me free access to members only content
@sidray90
@sidray90 4 күн бұрын
Way too many advertisements in the video.
@electronicseternity9210
@electronicseternity9210 4 күн бұрын
Hi, would really help if you could do a video on arrays, list, and arraylists private List<Topic> topics = new ArrayList<>(Arrays.asList( new Topic("Spring", "Spring Framework", "Spring Framework Description"), new Topic("Spring1", "Spring Framework1", "Spring1 Framework Description"), new Topic("Spring2", "Spring Framework2", "Spring2 Framework Description"), new Topic("Spring3", "Spring Framework3", "Spring3 Framework Description"))); The above is quite confusing for me. Appreciate your guidance. Tq
@midhunma8875
@midhunma8875 5 күн бұрын
Thanks, this is the clearest from scratch video i found so far..so difficult to explain yet you made it look easy
@themrambusher
@themrambusher 5 күн бұрын
fresh video
@Shuvooa
@Shuvooa 5 күн бұрын
C
@mohamedabdo9109
@mohamedabdo9109 5 күн бұрын
No AQL Exception solved with adding @Component in the Entity class
@gautamsnegi27
@gautamsnegi27 5 күн бұрын
Constructor injection not just helped in removing @Autowired but also gave the ability to make the repo variable final.
@Shadow-pn5qw
@Shadow-pn5qw 6 күн бұрын
Awesome explanation
@dieraven
@dieraven 7 күн бұрын
Thank you! I am getting ready for Level 2 course =)
@prafullakh
@prafullakh 7 күн бұрын
Funny you should mention Kissinger. It took a seasoned Indian diplomat to remind him of his heritage of being progeny of Jew refugees from WW2 and who was now turning a blind eye to the genocide in Bangladesh. You should look it up on the internet; he apparently pulled the table cloth from the breakfast table yelling he ain't a refugee. But the points you've mentioned are really good face savers when staring at an unknown problem. Good content, as usual.
@trantrungnghia9642
@trantrungnghia9642 8 күн бұрын
love the way you explain by giving some random dialogs like "Hey Spring Security, I want you to blablabla"
@andreicioropar8472
@andreicioropar8472 8 күн бұрын
This problem reminds me of a game i used to play when i was young with 3 and 7 with a group of friends. We were counting one by one and every time when someone missed the BUZZ ( in our country we would call it BOLTZ instead of BUZZ :D ) had to drink the BOOZE. Nice job anyway
@StephenTarenWB
@StephenTarenWB 8 күн бұрын
Shopify sent me here :rofl:
@nishantpant324
@nishantpant324 9 күн бұрын
But how many good Interviwers are there, most of them are trying to show you that you don't know this
@shubhamchouksey9904
@shubhamchouksey9904 9 күн бұрын
Is using Method References a good practice for maintainable code? I see that the reader has to actually look into the parameters of the and keep both of them side by side.
@milimishra6447
@milimishra6447 9 күн бұрын
Best explanation
@milimishra6447
@milimishra6447 9 күн бұрын
Good one ❤❤
@immortalveejay
@immortalveejay 9 күн бұрын
Besides providing sharp intelligent know-how, these latest videos have a totally fresh wit. Thanks, Java Brains.
@shubhamchouksey9904
@shubhamchouksey9904 9 күн бұрын
We can also use Java Streams for this Step2 : personList.forEach(person -> System.out.println("lambda person : " + person)); Step 3 : personList.stream(). filter(person -> { return (person.getLastName().charAt(0) == 'C'); }).forEach(person -> System.out.println("stream person : " + person));
@mudassarhannuri9009
@mudassarhannuri9009 9 күн бұрын
Hi Kaushik Are you planing vedioes on ai in java
@shubhamchouksey9904
@shubhamchouksey9904 9 күн бұрын
In the world of paid courses, you're the savior.
@ShivamKendre-fc3su
@ShivamKendre-fc3su 9 күн бұрын
Great video
@prakhar8690
@prakhar8690 10 күн бұрын
Awesome! I was asked this in an interview.
@hyperborean72
@hyperborean72 10 күн бұрын
the last two sentences are brilliant :)
@myameen9653
@myameen9653 10 күн бұрын
Thanks a ton.
@user-ke2lz5kk7g
@user-ke2lz5kk7g 11 күн бұрын
Thank u for your video )
@ArjunKumar-zu2kl
@ArjunKumar-zu2kl 11 күн бұрын
Nice and informative, thank you so much....🙏
@mdk1983
@mdk1983 11 күн бұрын
hey Koushik, thanks for this content. I really appreciate the efforts you are taking for video aesthetics as well. Hence a small suggestion as your fan, if one of your background walls, if not both, are painted in a darker tone, say a dark blue or so, your video will look a even better. ❤
@nightfury5124
@nightfury5124 11 күн бұрын
Thanks for this 😁😁
@ShivaKumarSatakuri
@ShivaKumarSatakuri 11 күн бұрын
Please make a series on Java 21 features.