Home Java javaTutorial Detailed introduction to the path to Java advancement

Detailed introduction to the path to Java advancement

Jul 23, 2017 pm 02:59 PM
java primary programmer

How to learn to grow from a junior Java programmer to a qualified architect, or what kind of technical knowledge system a qualified architect should have. This is not only a junior programmer who has just entered the workplace, but also a job This is a question often asked by veteran programmers who become confused after three or five years. I hope this article will be the most comprehensive and authoritative answer you have ever seen.

1: Basics of Programming

Whether it’s C or C++, whether it’s Java or PHP, if you want to be a qualified programmer, you still need to have basic data structures and algorithm foundations. The following articles will sort out commonly used data structures and classic algorithms for you from idea to implementation.

1-1 Commonly used data structures

Arrays, linked lists, heaps, stacks, queues, Hash tables, binary trees, etc.

1-2 Algorithm ideas

Analysis and calculation of algorithm time complexity and space complexity

Algorithm ideas: Recursion, recursion, exhaustion, greedy, divide and conquer, dynamic programming, iteration, branch bound

1-3 Classic algorithms

Classic sorting: insertion sort, bubble sort, quick sort (divide and exchange sort), direct Selection sort, heap sort, merge sort

Classic search: sequential search, binary search, binary sort tree search

1-4 Advanced data structures

B+/B- numbers, red-black trees, graphs, etc.

1- 5 Advanced Algorithms

Depth-first search of graphs, breadth-first search of graphs, topological sorting, Dijkstra algorithm (single source shortest path), Huffman coding, euclidean division, minimum spanning tree, etc.

2: Java Language Basics

The Java language, which was born just over 20 years ago, has been widely used in Web websites, mobile devices, and desktop applications due to its cross-platform, object-oriented, and suitable for distributed computing features, and has been firmly ranked in TOBIE for many years. It is at the top of the programming language rankings, and recently it was ranked first. What are the outstanding and distinctive features of Java must first be clear.

2-1 Basic grammar

Java syntax format, constants and variables, variable scope, methods and method overloading, operators, program flow control, various basic data types and packaging classes

2-2 Important : Collection class

Collection and various List, Set, Queue, Map implementation and integration relationships, implementation principles

Collections and Arrays

2-3 Other JavaAPI

String and StringBuffer, System and Runtime classes, Date and DateFomat Class

java.lang package

java.util package (collection class system, regular expressions, zip, and time, random numbers, properties, resources and Timer, etc.)

java.math package

java.NET package

java.text package (various formatting classes, etc.)

java.security package

2-4 Object-oriented, interface-oriented

Three major characteristics of objects: encapsulation, inheritance and polymorphism, advantages and disadvantages

How to design Classes, class design principles

this keyword, final keyword, static keyword

instantiation process of objects

rewriting and overloading of methods; method and method parameter passing process

constructor

internals Classes, abstract classes, interfaces

Polymorphism of objects (conversion between subclasses and parent classes, references to parent carton classes), application of abstract classes and interfaces in polymorphism

2-5 JVM memory Model, garbage collection

2-6 About exceptions

Throwable/Error/Exception, Checked Exception vs. Unchecked Exception, exception catching and throwing, exception catching principles, use of finally

2-7 Multi-threading

The concept of threads and processes

How to create multi-threads in a program, thread safety issues, communication between threads

Thread synchronization

Analysis of deadlock problems

Thread pool

2-8 IO

java. io package, understand the design ideas of the IO system based on the pipeline model and the characteristics and usage scenarios of commonly used IO classes.

File and related classes, byte streams InputStream and OutputStream, character streams Reader and Writer, and corresponding buffer streams and pipe streams, byte and character conversion streams, packaging streams, and common packaging classes are used to analyze IO performance

2-9XML

Be familiar with the advantages and disadvantages of SAX, DOM and JDOM and be able to use one of them to complete XML parsing and content processing; the principles of these parsing methods

2-10 Some advanced features

Reflection, proxy , generics, enumerations, Java regular expressions

2-11 Network programming

Principles and applicable scenarios of network communication protocols, Socket programming, working principles of WEB servers

2-11 JDK1.5, JDK1.6, JDK1 .7. What new features and improvements have been added to each version of JDK1.8 compared to the previous version?

Three: Database related

I mentioned the data structure earlier. The database is simply like an electronic database. A specialized filing cabinet is a warehouse that organizes, stores and manages data according to a certain data structure.

3-1 Theoretical basis

Database design principles and paradigms

Transactions (ACID, working principles, transaction isolation levels, locks, transaction propagation mechanisms)

3-2 Analysis of advantages and disadvantages of various databases, usage scenarios

MySQL/SQLServer/Oracle and various NoSQL (Redis, MongoDB, Memcached, Hbase, CouchDB, etc.)

3-2 SQL statements

Database creation, permission allocation, table creation, addition, deletion, modification, connection, subquery

Triggers, stored procedures, transaction control

3-3 optimization

Index principle and application, large table query optimization, multi-table connection query optimization, subquery optimization, etc.

3-4 database, table, backup, migration

Import, export, database, table, cold standby and hot Backup, master-slave backup, dual-machine hot backup, vertical expansion, horizontal expansion

3-5 JDBC

JDBC Connection, Statement, PreparedStatement, CallableStatement, ResultSet and other different types of use

Connection pool (configuration usage, implementation principle)

ORM, DAO

Four: JavaWeb core technology (including some front-ends)

HTML5/Css/js native/jQuery

Ajax (cross-domain, etc.)

JSP/JavaBean/Servlet/EL/JSTL /TabLib

JSF

JSON

EJB

Serialization and Deserialization

Rules Engine

Search Engine

Template Engine

Cache

Authentication

Testing

Cluster

Persistence

Generate static page technology

High performance

Security

Transaction JTA

Others you need to know, such as: management JMX, security JCCA/JAAS, integrated JCA, communication JNDI/JMS/JavaMain/JAF, SSI technology

5. Mainstream frameworks and tools

Struts1/Struts2

spring (IoC, AOP, etc.), SpringMVC

Persistence: hibernate/MyBatis

Log: Log4j

Unit test: JUnit

Message queue: ActiveMQ, RabbitMQ, etc.

Load balancing: Nginx/HaProxy

Web server: Tomcat, JBoss, Jetty, Resin, WebLogic, WebSphere, etc.

Communication: WebService (cxf's soap, restful protocol)

Cache: redis, Memcached

Work Stream: Activity, JBPM

Search engine: lucene, solr based on lucene package

Template engine: Velocity, FreeMaker

Big data: Hadoop (HDFS and MapReduce)

Build tool: Ant/Maven

6 , JavaWeb system design and architecture

Java design patterns

JAVA and UML modeling

Service-oriented architecture: SOA/SCA/ESB/OSGI/EAI, microservices

Resource-oriented architecture: ROA/REST

Cloud-oriented Architecture: COA/Saas/Cloud Computing

Large website load balancing, system tuning, etc.

Seven, More

Troubleshooting ability:

should be able to quickly locate the cause of the problem based on the exception information and approximate location

Optimization capabilities

Code specifications and code management:

Have its own code specification system, and the code is readable

Wide knowledge:

Understand various network products and features , understand all kinds of middleware, be able to know where the pitfalls are, be well versed in the advantages and disadvantages of various technical solutions, know how to integrate various resources and achieve the optimal... Understand various technologies and application scenarios, and have enough work experience to solve them Various strange problems encountered during integration

Technical management/technical director:

Product management, project management, team building, team improvement

The above is the detailed content of Detailed introduction to the path to Java advancement. 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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

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)

Square Root in Java Square Root in Java Aug 30, 2024 pm 04:26 PM

Guide to Square Root in Java. Here we discuss how Square Root works in Java with example and its code implementation respectively.

Perfect Number in Java Perfect Number in Java Aug 30, 2024 pm 04:28 PM

Guide to Perfect Number in Java. Here we discuss the Definition, How to check Perfect number in Java?, examples with code implementation.

Random Number Generator in Java Random Number Generator in Java Aug 30, 2024 pm 04:27 PM

Guide to Random Number Generator in Java. Here we discuss Functions in Java with examples and two different Generators with ther examples.

Armstrong Number in Java Armstrong Number in Java Aug 30, 2024 pm 04:26 PM

Guide to the Armstrong Number in Java. Here we discuss an introduction to Armstrong's number in java along with some of the code.

Weka in Java Weka in Java Aug 30, 2024 pm 04:28 PM

Guide to Weka in Java. Here we discuss the Introduction, how to use weka java, the type of platform, and advantages with examples.

Smith Number in Java Smith Number in Java Aug 30, 2024 pm 04:28 PM

Guide to Smith Number in Java. Here we discuss the Definition, How to check smith number in Java? example with code implementation.

Java Spring Interview Questions Java Spring Interview Questions Aug 30, 2024 pm 04:29 PM

In this article, we have kept the most asked Java Spring Interview Questions with their detailed answers. So that you can crack the interview.

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

See all articles