Java Web Learning
Tomcat
Statement: This is the note I took when I taught you to learn Java at station b with up master Nange. I'll share it with you Video address: https://www.bilibili.com/video/BV1NE411Q7Nx If there is any offense, please contact me to delete
web application server: Tomcat, Jboos, Weblogic, Jetty
Install Tomcat
Download the co ...
Posted by mistercash60000 on Sat, 05 Mar 2022 00:38:44 +0100
Chapter 2 fundamentals of Java language
catalogue
2.2 variables and constants
Example 2.1 declare a double constant, assign a value to the constant, and use the constant for calculation.
2.3 basic data type
Example 2.2 assign values to int variables according to decimal, octal and hexadecimal
Example 2.3 shows the error result of 4.35 * 100 and gives the solution.
Example 2.4 c ...
Posted by dvayne on Sat, 05 Mar 2022 00:31:35 +0100
Java basic syntax
Basic Java syntax (I)
Comment, identifier, keyword
Single-Line Comments
//Single-Line Comments
multiline comment
/*
multiline comment
*/
Documentation Comments
JavaDoc: document comments
/**
*Documentation Comments
*/
identifier
Keywords cannot be used as variable namesIdentifier case sensitiveThe identifier should be A ...
Posted by PHPHorizons on Sat, 05 Mar 2022 00:18:39 +0100
Station B Java self-study notes (under update) thank you
Shortcut key
ctrl+c copy (not available in cmd)
ctrl+v paste
ctrl+x cut
ctrl+a select all s
ctrl+d copies the current line to the next line
alt+f4 close window
alt+insert constructs with and without parameters
ctrl+z undo
ctrl+s save
Shift + delete permanently delete
win+r command line
ctrl+shift+esc Task Manager
ctrl+h inheritance ...
Posted by bh on Fri, 04 Mar 2022 23:36:29 +0100
Deploy the SpringBoot project to the server
1, SpringBoot project environment
IntelliJ IDEA 2018.3.2Mysql 5.1
2, Tencent cloud CentOS 7.6 image server
Students can apply for Tencent cloud student exclusive, 27 yuan for three months
3, Attention
(1) XShell
Modify host namehostnamectl set-hostname master #Set to master name
View current hostnamehostname
After modifying the hos ...
Posted by hypertech on Fri, 04 Mar 2022 22:56:20 +0100
springboot distributed micro service E-commerce mall learn from me about the use of springcloud Apollo in Java
This section mainly explains how to use Apollo in ordinary Java projects and Spring Boot.
Used in ordinary Java projects
Add Maven dependency of Apollo Client. The code is as follows.
<dependency>
<groupId>com.ctrip.framework.apollo</groupId>
<artifactId>apollo-client</artifactId>
<version> ...
Posted by Flinch on Fri, 04 Mar 2022 22:17:39 +0100
Differences between List, Array, Arrays, ArrayList of Java Self-Study Journals
Catalogue of Series Articles
No, there may be follow-up later.
Preface
Recently, looking at the source code of the Java container, I saw the Arrays class. Combining with the differences of List, Array, Arrays, ArrayList which I have learned a while ago, Baidu made a comparison between them. They are both two comparisons. Let's record t ...
Posted by Porl123 on Fri, 04 Mar 2022 22:10:53 +0100
Re recognize the Scope of Spring
What is Spring's ropeScope, also known as scope, in Spring IoC container, refers to the request visibility range of the Bean object it creates relative to other Bean objects. The Spring IoC container has the following scopes: basic scope (singleton, prototype), Web scope (reqeust, session, globalsession), and custom scope< br/>singleton i ...
Posted by B of W on Fri, 04 Mar 2022 21:50:05 +0100
7creation and use of Nacos online configuration file
Creation and use of Nacos online configuration file
(key) offline configuration files can be used for configuration management in the development stage. When the service is online, all local configurations can be added to Nacos configuration management for online configuration management.
1.Nacos client settings
1.1 launch and open the Nacos ...
Posted by broann on Fri, 04 Mar 2022 21:25:58 +0100
On virtue and talent of Java algorithm
Title Description
Sima Guang, a historian of the Song Dynasty, has a famous "theory of virtue and talent" in his "Zizhi Tongjian": "therefore, the perfection of talent and virtue is called a saint, the death of talent and virtue is called a fool, the victory of virtue is called a gentleman, and the victory of virtu ...
Posted by silas101 on Fri, 04 Mar 2022 21:09:30 +0100