
1. Learn JavaScript
Today JS is the programming language most sought after by employers. The HackerRank portal surveyed companies regarding their "Wishlist". JavaScript was requested by employers more often than any other language.
https://research.hackerrank.com/developer-skills/2018/
2. Learn to write SQL queries
SQL might seem no less obvious than Spring and Hibernate, which I did not include in the list. In fact, there is a difference: a large number of developers have a superficial knowledge of SQL queries: they can write "SELECT * FROM table_name", or join a couple of tables. I recommend that you thoroughly master them, and don't be shy about mentioning this in your resume. In the past, several of my colleagues had jobs where they had to write a lot of SQL queries. When they decided to move into Java development, these skills made them very attractive. And in a Java dev, of course, it's a very useful skill to have. I regularly turn to them for tips :) You can start by reading "Head First SQL". Then just select one of the popular DBMSs (Portgres or Oracle, for example) and read a couple of books on it.3. Create a GitHub profile
After your resume, your GitHub profile is perhaps the most important thing that a potential employer will pay attention to. A profile with several working projects will definitely attract additional attention. What's more, "GitHub analyzers" are becoming more and more popular among recruiters. These are special programs that scan the code stored on GitHub in order to help companies find developers with the right technology stack. If they need someone who knows Spring Security, the program crawls over GitHub, selecting users whose repositories contain code that uses this technology. In the beginning, you obviously won't have anything particularly special to boast about, but you can start filling your profile with CodeGym's "big tasks".If you've learned ReactJS/AngularJS and created a couple of one-page applications, put them up there too. Everything you've created works and an employer may be interested in checking out your GitHub profile.4. Get an Oracle certification
CodeGym's creators won't let me lie to you: the most common question they get from potential students is "Do you provide any certificate when I graduate?" They don't hand out Java certificates for a simple reason: employers aren't interested in them. They are entirely capable of verifying what you know and what you can do during an interview, without any certificates from online courses. That said, a certificate from Oracle is different in that it is an official confirmation from Java's creators that you are fluent in the language. Such a certification is a serious advantage for outsourcing providers, i.e. the folks who "rent out" their developers to other companies to work on external projects. For example, suppose some bank needs to create a new web client. Maintaining its own in-house horde of developers for this isn't profitable — for a one-time project, it's easier to find an external team. In such cases, businesses turn to an outsourcing provider. They will hire people with the skills required by the bank and form a team. That said, the customer must understand that it will pay (a lot) for really smart developers. This is where Oracle certification will be your advantage. After all, it is the only way to confirm with a piece of paper that a Java programmer is qualified. In other words, an outsourcing provider can much more easily "sell" a certified developer to its customers. Oracle certifications come in several tiers. Getting the first level (OCAJP8) will be very easy. The exam has questions about just 8 topics:- Java Basics (variables, packages, the main() method, etc.);
- Working With Java Data Types (primitives, references, wrappers);
- Using Operators and Decision Constructs (+-*/, if-else, switch, etc.);
- Using Loop Constructs (loops);
- Working with Methods and Encapsulation (methods, encapsulation);
- Working with Inheritance (inheritance);
- Handling Exceptions;
- Working with Selected Classes from the Java API (popular classes such as LocalDateTime, ArrayList, String).
List<>
, there are only questions about ArrayList<>
).
Taking the certification exam currently costs $150.

GO TO FULL VERSION