Thymeleaf foundation and springboot integration
1, Meet Thymeleaf
Students who have worked on the SSM web project know that when we want to interact with the back-end data on the HTML page, we have no choice but Ajax, and the use of JSTL on the HTML page is not supported. At this time, we need to use the JSP page - a special java class (servlet in essence). However, the compatibility betwee ...
Posted on Mon, 06 Dec 2021 17:03:56 -0500 by Prine
Three ways of Spring cycle dependency
Introduction: Circular dependency is a circular nested reference in N classes. If this circular dependency occurs in our daily development as a new object, the program will be called circularly at runtime until a memory overflow error occurs. Here's how Spring solves circular dependencies.
First: Constructor Parameter Cyclic Dependency
The Sp ...
Posted on Mon, 06 Dec 2021 12:50:43 -0500 by fhil85
Re learn the integrated distributed file system of SpringBoot series
Local file upload and access service
The core content of this chapter is to introduce the distributed file system, which is used to store the image, word, excel, pdf and other files of the application. Before introducing the distributed file system, let's introduce the use of native storage to store file resources.
The core implementati ...
Posted on Mon, 06 Dec 2021 00:21:24 -0500 by bluejay002
spring -- behavior analysis of proxy object during nested call of Java Proxy and Cglib methods
spring -- failure analysis of Java Proxy and Cglib method nested call proxy
This paper mainly analyzes the different reactions of the two proxy methods when methods are nested. This paper is the last one Spring -- configuration class parsing process Configure derivatives. This article is not an expository text used by Java proxy and Cglib.
Of ...
Posted on Sun, 05 Dec 2021 20:53:49 -0500 by Crowly
Wildlife protection system based on Spring MVC + Spring + MyBatis
Resource download: https://download.csdn.net/download/weixin_44893902/45603787
Exercise point design: fuzzy query, delete, add, modify
1, Language and environment
Implementation language: JAVA language.Environment requirements: MyEclipse/Eclipse + Tomcat + MySql.Use technology: Jsp+Servlet+JavaBean or spring MVC + Spring + mybatis.
2 ...
Posted on Sun, 05 Dec 2021 17:52:36 -0500 by bigdaddysheikh
Code Vulnerability Scanning Common Vulnerabilities
Code Vulnerability Scanning Common Vulnerabilities
1. Log Injection (Log Forging Vulnerability)
Vulnerability Description Writing unauthenticated user input to a log file can cause an attacker to forge log entries or inject malicious information into the log. A bug in log forgery occurs when:
Data enters the application from an untrusted ...
Posted on Sun, 05 Dec 2021 14:57:20 -0500 by AaZmaN
Spring - automatic injection?
The way we often inject is similar to this
@Service
public class HelloService {
@Autowired
private BeanFactory beanFactory;
@Autowired
public HelloService(ApplicationContext applicationContext) {
}
@Autowired
public void setEnvironment(Environment environment) {
}
}
Whether constructor injection or attribu ...
Posted on Sun, 05 Dec 2021 14:24:18 -0500 by kritro
SpringBoot -- Conditional annotation for detailed explanation and application of automatic assembly principle
As the mainstream framework of today's development, SpringBoot is impossible as a java developer. It is typical and easy to use, but when you understand the principle, you will unconsciously sigh, really TMNB!
This paper mainly explains the principle of its automatic ...
Posted on Sun, 05 Dec 2021 12:59:37 -0500 by jeff_valken
[Spring AOP] term analysis + AspectJ annotation usage
AOP (terminology)
1. Connection point: the method that can be enhanced is called connection point
2. Pointcuts: the methods that are actually enhanced are called pointcuts
3. Notification (enhanced): the logical part that is actually enhanced.
There are several types of notifications:
l pre notification: notification before method executio ...
Posted on Sun, 05 Dec 2021 08:00:03 -0500 by seanmayhew
Spring Boot with MyBatis and JPA
Spring Boot with MyBatis and JPA
What is Spring Boot
Spring features
Ability to create stand-alone Spring Boot applications Embed Tomcat,Jetty Undertow and don't need to deploy them Provides "starters" poms to simplify Maven configuration
https://www.cnblogs.com/qlqwjy/p/7979159.html
Spring brings a lot of magic into ...
Posted on Fri, 03 Dec 2021 17:20:38 -0500 by djs1