search
HomeJavajavaTutorialWhat to learn about Java web

What to learn about Java web

May 21, 2019 pm 08:14 PM
java

When I first wanted to learn javaweb development, I hoped to learn all aspects (so that I would be confident when looking for a job). But I don’t understand this at all, and I don’t know anyone who is engaged in this field, so I have no way to start learning. After a year of "dead" study, I have a deep understanding of Java from the Internet, books, and videos. Friends who want to engage in Java, as long as they learn all these technologies, they will definitely have no problem finding a job.

What to learn about Java web

The first stage: Java basics, including java syntax, object-oriented features, common APIs, and collection frameworks; (Basic)

The second stage: java Interface programming, including AWT, event mechanism, SWING, (not commonly used) this part can also be skipped, you can see it again when you use it;

The third stage: java API: input and output, multi-threading , network programming, reflection annotations, etc., the essence of java (key points);

The fourth stage: database SQL basics, including add, delete, modify and query operations and multi-table queries; Oracle Mysql

The fifth stage Stage: JDBC programming: including JDBC principles, JDBC connection library, JDBC API. Although Hibernate is now much more convenient than JDBC, JDBC technology is still in use, and JDBC thinking is particularly important;

The sixth stage: In-depth understanding of JDBC Advanced features: including database connection pool, stored procedures, triggers, CRM thinking (advanced), this is difficult to understand, you can learn it if you have time;

Stage 7: HTML language learning, including HTML tags, forms Tags and CSS, which are the basis of Web application development;

The eighth stage: JavaScript scripting language, including javaScript syntax and objects, Ajax basics; these two aspects;

The eighth stage: Stage nine: Servlet development. From this point on, you will enter an important step in javaWeb development, including installation and use of XML, Tomcat server, simple understanding of HTTP protocol, Servlet API, etc., the foundation of java web development. (Important)

The tenth stage: JSP development: JSP syntax and tags, custom tags, EL, JSTL library understanding and the design pattern concept of the MVC three-tier architecture;

The eleventh stage :AJAX development: AJAX principles, request response processing, AJAX development library, Jquery;

The twelfth stage: three major frameworks-struts, spring, hibernate, the essence of javaWeb (important)

The Thirteenth Stage: Learning other frameworks - springMVC, mybatis, currently more mainstream frameworks

The Fourteenth Stage: After learning this knowledge, you can learn some enterprise frameworks in depth, Maven, redis, log4j, etc.

The fifteenth stage: Generally, the system servers used by companies and enterprises today are Linux, so those who are interested can learn the various commands of Linux

Learning requirements

java Basic programming mastery: Proficient. Reason: If you don’t know Java, can you write JSP? Just kidding.

You must also be very familiar with the following packages:
java.lang;
java.util;
java.io;
java.sql ;
java.text;
javax.sevrlet;
javax.servlet.http;
javax.mail; etc.

2: sql mastery level: Proficiency. Reason: If you don't use a database you probably don't need to know sql. At the same time, you must be familiar with more than one SQL in the following databases. Oracle,Mysql,DB2...

3:html Mastery level: Proficient. Reason: Don’t know html. Maybe you can write JSP?

4:javascript/jscript: Mastery level:Familiar. Reason: Client-side data verification and some page processing require you to use scripts.

5: CSS mastery: Familiarity. Reason: CSS is usually used to unify page styles.

6: xml mastery level: Understand the reason: AppServer configuration is generally implemented using XML.

7: ejb mastery: Reason for understanding: Business logic in many projects is implemented by ejb, so...

8: The following Kinds of AppServer(engnier) You need to know more than one.

a:)Tomcat

b:)WebLogic

c:)WebSphere

d:)Jboss

Related learning recommendations: java basic tutorial

The above is the detailed content of What to learn about Java web. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
Are there any emerging technologies that threaten or enhance Java's platform independence?Are there any emerging technologies that threaten or enhance Java's platform independence?Apr 24, 2025 am 12:11 AM

Emerging technologies pose both threats and enhancements to Java's platform independence. 1) Cloud computing and containerization technologies such as Docker enhance Java's platform independence, but need to be optimized to adapt to different cloud environments. 2) WebAssembly compiles Java code through GraalVM, extending its platform independence, but it needs to compete with other languages ​​for performance.

What are the different implementations of the JVM, and do they all provide the same level of platform independence?What are the different implementations of the JVM, and do they all provide the same level of platform independence?Apr 24, 2025 am 12:10 AM

Different JVM implementations can provide platform independence, but their performance is slightly different. 1. OracleHotSpot and OpenJDKJVM perform similarly in platform independence, but OpenJDK may require additional configuration. 2. IBMJ9JVM performs optimization on specific operating systems. 3. GraalVM supports multiple languages ​​and requires additional configuration. 4. AzulZingJVM requires specific platform adjustments.

How does platform independence reduce development costs and time?How does platform independence reduce development costs and time?Apr 24, 2025 am 12:08 AM

Platform independence reduces development costs and shortens development time by running the same set of code on multiple operating systems. Specifically, it is manifested as: 1. Reduce development time, only one set of code is required; 2. Reduce maintenance costs and unify the testing process; 3. Quick iteration and team collaboration to simplify the deployment process.

How does Java's platform independence facilitate code reuse?How does Java's platform independence facilitate code reuse?Apr 24, 2025 am 12:05 AM

Java'splatformindependencefacilitatescodereusebyallowingbytecodetorunonanyplatformwithaJVM.1)Developerscanwritecodeonceforconsistentbehavioracrossplatforms.2)Maintenanceisreducedascodedoesn'tneedrewriting.3)Librariesandframeworkscanbesharedacrossproj

How do you troubleshoot platform-specific issues in a Java application?How do you troubleshoot platform-specific issues in a Java application?Apr 24, 2025 am 12:04 AM

To solve platform-specific problems in Java applications, you can take the following steps: 1. Use Java's System class to view system properties to understand the running environment. 2. Use the File class or java.nio.file package to process file paths. 3. Load the local library according to operating system conditions. 4. Use VisualVM or JProfiler to optimize cross-platform performance. 5. Ensure that the test environment is consistent with the production environment through Docker containerization. 6. Use GitHubActions to perform automated testing on multiple platforms. These methods help to effectively solve platform-specific problems in Java applications.

How does the class loader subsystem in the JVM contribute to platform independence?How does the class loader subsystem in the JVM contribute to platform independence?Apr 23, 2025 am 12:14 AM

The class loader ensures the consistency and compatibility of Java programs on different platforms through unified class file format, dynamic loading, parent delegation model and platform-independent bytecode, and achieves platform independence.

Does the Java compiler produce platform-specific code? Explain.Does the Java compiler produce platform-specific code? Explain.Apr 23, 2025 am 12:09 AM

The code generated by the Java compiler is platform-independent, but the code that is ultimately executed is platform-specific. 1. Java source code is compiled into platform-independent bytecode. 2. The JVM converts bytecode into machine code for a specific platform, ensuring cross-platform operation but performance may be different.

How does the JVM handle multithreading on different operating systems?How does the JVM handle multithreading on different operating systems?Apr 23, 2025 am 12:07 AM

Multithreading is important in modern programming because it can improve program responsiveness and resource utilization and handle complex concurrent tasks. JVM ensures the consistency and efficiency of multithreads on different operating systems through thread mapping, scheduling mechanism and synchronization lock mechanism.

See all articles

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

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!