Servlet learning phase I

What is a servlet 1. Servlet is one of the Java EE specifications. A specification is an interface. 2. Servlet is one of the three major components of Java Web. The three components are: servlet program, Filter filter and Listener listener. 3. Servlet is a java applet running on the server. It can receive requests sent by the client and respon ...

Added by Hellusius on Thu, 09 Dec 2021 13:32:23 +0200

Java novice learning java project log

Hello, I'm 3y. Before the text, report the progress of austin project to all shareholders:Generally speaking, I feel that the response this time is good, although the amount of reading is not high. But there are many more people who leave messages, and many people are worried about whether I will lose my pigeon (I broke halfway through the upda ...

Added by Sangre on Thu, 09 Dec 2021 06:38:36 +0200

Servlet introduction

Servlet Technology a. What is a Servlet 1.servlet is one of the Java EE specifications, and the specification is the interface 2.Servlet is one of the three major components of Java Web. The three major components are servlet program, Filter and Listener listener 3.Servlet is a java applet running on the server. It can receive requests ...

Added by holowugz on Thu, 09 Dec 2021 02:20:42 +0200

day06 [Debug & Binary Conversion & Basic Practice]

1.Debug mode 1.1 What is Debug mode Is a program debugging tool for programmers. It can be used to view the execution process of a program or to track the execution of a program to debug it. 1.2 Debug introduction and operation process How to add breakpoints Select the line of code where you want to set the breakpoint by clicking the le ...

Added by krelian on Wed, 08 Dec 2021 20:08:06 +0200

Learn spring MVC from scratch -- binding of request parameters

2, Binding of request parameters 2.1 preparation In this section, we will use classes on servlet requests such as HttpServletRequest and HttpServletResponse. Servlet API package dependency needs to be introduced. It is necessary to note that the java EE specification was renamed Jakarta EE in 2018. Accordingly, the package name we used before ...

Added by b-ware on Sun, 05 Dec 2021 23:40:47 +0200

SpringBoot Auto-assembly Principle Analysis - Interview can answer this question

1. Preface SpringBoot is the most mainstream framework in current software. It has its own image in both job and interview. SpringBoot mainly solves the heavy xml configuration Bean of traditional spring and realizes automatic assembly. So we've often been asked in interviews how SpringBoot automates assembly. This article will analyze the pr ...

Added by midge1970 on Mon, 29 Nov 2021 03:04:28 +0200

[summary of java foundation and core]

Java execution control flow The control process in Java is actually the same as that in C. in Java, process control involves if else, while, do while, for, return, break and select statement switch. This is analyzed below. Conditional statement Conditional statements can execute different statements according to different conditions. Includi ...

Added by geek_girl_2020 on Sun, 28 Nov 2021 09:39:56 +0200

JavaScript browser BOM

The BOM browser object model enables JavaScript to "talk" with the browser. Since modern browsers have (almost) implemented the same methods and properties in JavaScript interactivity, they are often considered as BOM methods and properties. 4.1 window      The browser mainly uses the window object to operate js co ...

Added by beckjoh on Fri, 26 Nov 2021 21:12:13 +0200

JavaScript timers, cookies and object creation methods

1.JavaScript timer Define timer: setInterval('call function ', millisecond time): the function is executed every fixed millisecond interval setTimeout('call function ', millisecond time): execute a call function after a fixed time Turn off timer: Clearinterval (timer name) Cleartimeout (timer name)   <script type="tex ...

Added by Crowly on Fri, 26 Nov 2021 21:05:22 +0200

MyBatis - Common elements for dynamic SQL

  1. <if>Element     What dynamic SQL usually does is conditionally include a part of the where clause. So in MyBatis, the <if>element is the most common element, which is similar to the if statement in Java. 2. <select>, <when>, <otherwise> elements       Sometimes, you don't want ...

Added by v4g on Tue, 23 Nov 2021 19:19:31 +0200