Home Java javaTutorial A roadmap for learning Java

A roadmap for learning Java

Jun 20, 2017 am 09:39 AM
java study programmer my own

The following are some technologies and tools that I have often used in development over the past few years. Of course, these technologies also need to be strengthened (some of them are what I have always used, but I don’t go into depth, and some internal principles are not very clear)

Front-end part:

1) HTML: The core language of web pages, forming the basis of web pages

2) CSS: A powerful tool to make web pages more colorful and brilliant

3) JavaScript: The fundamental to moving the webpage has strengthened the interaction between web pages and users

4) HTML DOM: From a more vivid perspective to look at the web pages, let us control more convenient control more conveniently Web page

5) HTML BOM: an indispensable tool for interacting with the browser

6) JavaScript libraries, mainly: jQuery and its plug-ins, YUI and its plug-ins, making writing web pages more convenient A convenient, fast and robust powerful tool

7) AJAX: Asynchronous submission, enhances the user’s good interactive experience using web pages

8) JSON: Smaller, faster and easier to parse than XML Data transfer tool

9) FLEX: Provides rich and colorful animation effects

10) Puyuan Workflow: Helps users handle business processes more clearly

11) JSP: The presentation layer of Servlet separates web page logic from the display of web design

12) JSTL: Strengthens and simplifies the development of JSP pages

13) EL: Enables JSP page writing It’s simpler

Backend part:

1) Basic part of JAVA language programming: Rich content is the core and foundation of Java knowledge architecture

2) JDBC: Provides a A benchmark from which more advanced tools and interfaces can be built to enable Java developers to write database applications

3) JavaMail: for email-related programming work

4) JUnit: unit testing, the status of the entire working test is always very important

5) Log4j: allows us to control the log generation process in more detail

6) Servlet: the core of JavaWeb

7) Struts2: The star-level framework in JavaWeb programming. Its advantages and multi-functions make programming work easier. It is mainly used to control jumps

8) Spring: The star-level framework in JavaWeb programming , the same advantage of multi-function makes programming work easier, mainly used for managing objects

9) iBatis: a star-level framework in JavaWeb programming, also has the advantage of multi-function, making programming work easier, mainly used for Interaction between program and database

10)SQL: An essential tool for interactive programming with the database

Version control:

1)SVN: Version control, convenient for the team Collaborative work

WEB server:

1) Tomcat: Excellent free small and medium-sized WEB server

2) Weblogic: Very powerful WEB server

Development tools:

1) Eclipse: an open source and powerful Java programming tool

2) MyEclipse: a powerful enterprise-level integrated development environment developed on the basis of eclipse with its own plug-ins.

Database:

1) Oracle: The leader in the database industry. Of course, this is commonly used. It is just some commonly used functions and needs to be strengthened

2) MySQL: The most common One of the best relational databases

3) SqlServer: One of the best relational databases

Database client:

1) Toad: A great database client Terminal software

Operating system:

1) Windows

2) Linux

Remote login session tool:

1) SSH : Been using it, very good

Others:

Various types and versions of browsers (FireFox is recommended), office software series, various text editors (Sublime is recommended), Various readers, etc.

Well, looking back, I have used a lot of things for development work, but I can’t be said to be proficient in any of them. I just use them frequently and use those commonly used ones. The functions I recorded here are just to add them one by one. Of course, I will definitely need to continue to learn some other new technologies and tools! It’s a reminder to yourself! Point out the direction of your efforts!

The following are three pictures I found on the Internet, which better illustrate the learning road map of being a Java programmer. I put them here as a self-reminder tool. I will look at them from time to time and will quickly repair my own. Knowledge tree!

1: Java’s knowledge architecture

2 : Basic learning roadmap for JavaWeb development

3: Growth roadmap for JavaWeb development

Well, I have read a lot of books this year, and I feel that I have gained a lot. I look forward to a better start in 2018! The goal is already set, now it’s time to take action! Remember: learning is always your own business. If you don’t study, you won’t have much time. If you do learn, sometimes you can use the knowledge you have learned in exchange for more free and good time! Time is the basic component of life and the fundamental measure of the existence of all things. Where our time is, our life will be there! Our value will also be improved or eliminated there! Come on, young man!

Final suggestion: When learning various technologies, go to the official website of the corresponding technology (you can find it on Baidu!), and buy books published by professional publishers and professionals. English is a big hurdle and a distinction. A website for programmers at all levels. My English is also relatively poor, but as I continue to study, I believe I can win it. Recently, when I study technology, I also prefer to go to the official website to study English, and I feel These foreign technologies are so amazing! Of course, they are the originators! come on!

The above is the detailed content of A roadmap for learning Java. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Break or return from Java 8 stream forEach? Break or return from Java 8 stream forEach? Feb 07, 2025 pm 12:09 PM

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is

PHP: A Key Language for Web Development PHP: A Key Language for Web Development Apr 13, 2025 am 12:08 AM

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

PHP vs. Python: Understanding the Differences PHP vs. Python: Understanding the Differences Apr 11, 2025 am 12:15 AM

PHP and Python each have their own advantages, and the choice should be based on project requirements. 1.PHP is suitable for web development, with simple syntax and high execution efficiency. 2. Python is suitable for data science and machine learning, with concise syntax and rich libraries.

Java Program to Find the Volume of Capsule Java Program to Find the Volume of Capsule Feb 07, 2025 am 11:37 AM

Capsules are three-dimensional geometric figures, composed of a cylinder and a hemisphere at both ends. The volume of the capsule can be calculated by adding the volume of the cylinder and the volume of the hemisphere at both ends. This tutorial will discuss how to calculate the volume of a given capsule in Java using different methods. Capsule volume formula The formula for capsule volume is as follows: Capsule volume = Cylindrical volume Volume Two hemisphere volume in, r: The radius of the hemisphere. h: The height of the cylinder (excluding the hemisphere). Example 1 enter Radius = 5 units Height = 10 units Output Volume = 1570.8 cubic units explain Calculate volume using formula: Volume = π × r2 × h (4

PHP vs. Other Languages: A Comparison PHP vs. Other Languages: A Comparison Apr 13, 2025 am 12:19 AM

PHP is suitable for web development, especially in rapid development and processing dynamic content, but is not good at data science and enterprise-level applications. Compared with Python, PHP has more advantages in web development, but is not as good as Python in the field of data science; compared with Java, PHP performs worse in enterprise-level applications, but is more flexible in web development; compared with JavaScript, PHP is more concise in back-end development, but is not as good as JavaScript in front-end development.

PHP vs. Python: Core Features and Functionality PHP vs. Python: Core Features and Functionality Apr 13, 2025 am 12:16 AM

PHP and Python each have their own advantages and are suitable for different scenarios. 1.PHP is suitable for web development and provides built-in web servers and rich function libraries. 2. Python is suitable for data science and machine learning, with concise syntax and a powerful standard library. When choosing, it should be decided based on project requirements.

Create the Future: Java Programming for Absolute Beginners Create the Future: Java Programming for Absolute Beginners Oct 13, 2024 pm 01:32 PM

Java is a popular programming language that can be learned by both beginners and experienced developers. This tutorial starts with basic concepts and progresses through advanced topics. After installing the Java Development Kit, you can practice programming by creating a simple "Hello, World!" program. After you understand the code, use the command prompt to compile and run the program, and "Hello, World!" will be output on the console. Learning Java starts your programming journey, and as your mastery deepens, you can create more complex applications.

How to Run Your First Spring Boot Application in Spring Tool Suite? How to Run Your First Spring Boot Application in Spring Tool Suite? Feb 07, 2025 pm 12:11 PM

Spring Boot simplifies the creation of robust, scalable, and production-ready Java applications, revolutionizing Java development. Its "convention over configuration" approach, inherent to the Spring ecosystem, minimizes manual setup, allo

See all articles