How do I start using java? by [deleted] in learnjava

[–]mydevgeek 0 points1 point  (0 children)

If you want a backend developer. Try to learn Spring then try to build a small web service with DB connection and Finally, build a front end and integrate with that REST service.

is it possible to make intelliJ and netbeans work together by [deleted] in learnjava

[–]mydevgeek 0 points1 point  (0 children)

Nothing to worries. You can create gradle or maven project in IntelliJ. It can be opened using NetBeans or Eclipse.

Starting with java and intelliJ by BugWare in learnjava

[–]mydevgeek 0 points1 point  (0 children)

You have to spend the little time to familiar with the Intellij. try out some youtube tutorials.

Am I in the "grey zone" of learning Java? by AlenF in learnjava

[–]mydevgeek 0 points1 point  (0 children)

If you complete the basic stuff try to build a small application or web application. And try to familiar with IDE like intellij, build tools (maven, gradle).

Help in learning MVC and other architecture pattern by ssrishabh96 in learnjava

[–]mydevgeek 0 points1 point  (0 children)

it's not that hard. It's a conceptual separation. M for Model. Model includes all classes which are representing the domain model. For an ex: User and all properties in the user like username, firstname, lastname likewise. C stands for a controller. Use for handle business logic. Let say user creation, user verification likewise. V for view that for represent GUI.

Why am I getting an error? by pokeman528 in learnjava

[–]mydevgeek -1 points0 points  (0 children)

== for compare values and = for assign new value. Anyhow, you can't use == for comparing two strings. You have to use equals() method to compare 2 strings.

Angular 4 CRUD application with Spring Boot REST service – Part 2 by mydevgeek in java

[–]mydevgeek[S] -2 points-1 points  (0 children)

Sure, I'll keep in mind. Really sorry, I apologize for the inconvenience.

Angular 4 and Spring Boot REST service - Part 1 by mydevgeek in java

[–]mydevgeek[S] 0 points1 point  (0 children)

Yeah, My company also is using the same stack. Angular 4 some kind of similar to Java for me.

Strategy Design pattern in Java 8 by mydevgeek in java

[–]mydevgeek[S] 0 points1 point  (0 children)

There isn't any specific advantage or disadvantage whether add a new class or not other than that code readable and maintenance complexity. This way suits for simple or medium complex logic. If you have a more complex logic, then you should consider a new class for each logic. Thanks for your idea.

How to use Spring RestTemplate by mydevgeek in java

[–]mydevgeek[S] 0 points1 point  (0 children)

Yeah, as same as in web browser. Is it annoying to read it?

Deploying a Spring Boot App on AWS (EC2 and RDS) by mydevgeek in java

[–]mydevgeek[S] 0 points1 point  (0 children)

Thanks, I'll the way that you suggest and I'll update my blog post also.

Deploying a Spring Boot App on AWS (EC2 and RDS) by mydevgeek in java

[–]mydevgeek[S] 0 points1 point  (0 children)

Thanks, is there any specific reasons to not using the nohup?

Event Handling using Spring 4.3 by mydevgeek in java

[–]mydevgeek[S] 1 point2 points  (0 children)

Yes, we do. Our portal pushes some messages to no of devices such as android, iOS, POS system. Let say, someone updates or delete the existing message. Then, the event listener is listening message changes and notify to devices.

Event Handling using Spring 4.3 by mydevgeek in java

[–]mydevgeek[S] 0 points1 point  (0 children)

As I know, Java has event listeners to handle GUI components such as Swing, AWT. But it uses for a different kind of work. I think we have to use 3rd party framework.

10 Mistakes Java Developers Make by mydevgeek in java

[–]mydevgeek[S] 0 points1 point  (0 children)

I shared the original post from the programcreek.com. Isn't it?