Back end learning log:
Took a relatively complete springboot MVC framework and source code for corresponding learning
Interpretation of SpringBootMVC structure:
For SpringBoot, a framework with high cohesion and low coupling must comply with a logical difficulty that can withstand a large number of development. Some developers develop alone. The main development pr ...
Posted by ma5ect on Mon, 04 Oct 2021 05:49:35 +0200
Menu management list data presentation (PROJECT03_DAY01_01)
3. Menu management list data presentation
3.1 data architecture analysis
After loading the menu list page, start the asynchronous loading operation of menu data. This menu list page should present the menu and superior menu information. During data query, the data encapsulation and transmission process is shown in figure-8. Figure-8 Note: Th ...
Posted by cybercog on Fri, 24 Sep 2021 12:50:58 +0200
Spring MVC file upload
Tip: after the article is written, the directory can be generated automatically. Please refer to the help document on the right for how to generate it
1, About multipart requests
The data submitted by the forms we generally use are text data, such as our user information form. When the form is submitted, the "attribute value" ...
Posted by WebMonkey on Thu, 23 Sep 2021 15:02:27 +0200
jsp&MVC&EL expression
jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>jsp form</title>
</head>
<body>
<h1>
Hello
</h1>
</body>
</html>
instructions
Function: used to configure jsp pages and import resource files Format: <% @ instruction name a ...
Posted by atdawgie on Tue, 21 Sep 2021 23:15:33 +0200
The core of Spring - IoC and DI
IoC, the core of Spring
IoC control reverses the permission of Inverse of Control to create objects. Objects needed in Java programs are no longer created by programmers, but are created by IoC containers.
IoC core idea
Implement IoC in the way of Java Web
1,pom.xml
<dependencies>
<!-- introduce Servlet rely on -->
...
Posted by harman on Sat, 18 Sep 2021 11:06:06 +0200
❤️60,000-word Introduction to the Spring MVC Framework - From Beginner to Advanced (Recommended Collection)❤️
Introduction to the Spring MVC Framework (Recommended Collection)
❤️Hope your blogger gives you a triple company + attention!!!
Learn video from: Station B says, if you are interested, you can watch it
SSM: mybatis + Spring + Spring MVC MVC three-tier architecture
SpringMVC + Vue + SpringBoot + SpringCloud + Linux
SSM = JavaWeb for project ...
Posted by scotthoff on Mon, 13 Sep 2021 05:07:21 +0200
SpringMVC Response Control
1. SpringMVC Response Control
1.1 Default Page
You can configure a default jump page for Controller after processing is complete In the configuration file of mvc <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/pages/" />
<property name="suffix" v ...
Posted by FarhanKhalaf on Thu, 09 Sep 2021 18:46:21 +0200
Handwritten spring Chapter 3 - refactoring, using dependencies to improve instantiation bean operations
preface
In the previous article, we wrote a spring short version framework based on the single responsibility principle and template method pattern, but in the process of use, we found that if the bean to be loaded into the container has parameters, there will be problems when creating the bean. In this chapter, we need to adjust the frame ...
Posted by SP8600 on Sun, 05 Sep 2021 04:27:33 +0200