Talking about the Advanced Mapping/Association Query of MyBatis (4)

MyBatis Advanced mapping/association queries: One-to-one/many-to-one One to many Many to many The main usage is the collection attribute and association attribute of resultMap. association Association: Used for mapping the information of association query to a single object, mapping the information of association query to a pojo object, ...

Posted by el_timm on Mon, 01 Apr 2019 14:03:29 -0700

9. spring bean Foundation (1)

9. spring bean Foundation (1) This article mainly explains the following knowledge points. 1. An example of using bean s in spring 2. Injecting values to bean properties 3. Loading multiple configuration files 4. Example of spring internal bean s 5. Scope of spring bean s 1. An example of using bean s in spring Referencing bean s unde ...

Posted by erikhillis on Mon, 01 Apr 2019 02:27:28 -0700

Spring MVC Induction-2(Session Session Session, Interceptor)

Main points: HttpSession: The establishment of a session starts with a user sending the first request to the server, and ends with an explicit end of the user or session timeout. With session, user status can be recorded in a certain time. 2.ModelAndView: You can either set the URL address or render the view. 3. Handler Interceptor: The inte ...

Posted by jasonX on Sun, 31 Mar 2019 18:27:30 -0700

Big pit encountered in acquiring mysql data by NODE.js synchronous call

Today's edition will share with you an article about the pit encountered when nodejs synchronous invocation acquires mysql data. It is very comprehensive and meticulous. It has a certain reference value. Friends who need it can refer to and learn from it. If there are any shortcomings, criticism and correction are welcome. mysql calls to get d ...

Posted by rob323 on Sun, 31 Mar 2019 01:51:30 -0700

The Simplest Understanding of StringBoot Configuration Multi-Data Source Tutorial

Bullshit does not say much directly on the code "novice on the road God do not spray!" 1 First, you need to build a Springboot project. I won't show you how to build it. 2. Configure two data sources in the configuration file 3. Setting up two config classes import org.apache.ibatis.session.SqlSessionFactory ...

Posted by rocram16 on Sat, 30 Mar 2019 08:57:29 -0700

[Chapter 3] Scope of DI 3.4 Bean: Learn from me Spring 3

3.4 Scope of Bean s What is scope? In object-oriented programming, "scope" generally refers to the visible range between objects or variables. In Spring containers, it refers to the visibility of the Bean objects it creates relative to the requests of other Bean objects. Spring provides two basic scopes of "singleton" an ...

Posted by Alka-Seltxer on Sat, 30 Mar 2019 04:45:30 -0700

Spring MVC Learning Notes (2) Processor Interceptor Details

The processor interceptor of Spring Web MVC is similar to the Filter filter Filter in Servlet development, which is used to preprocess and post-process the processor. Interceptor application scenarios: 1. Logging: Logging requests for information for information monitoring, information statistics, computing PV (Page View), etc. 2. Privilege ...

Posted by subhuman on Thu, 28 Mar 2019 07:21:28 -0700

One linux command per day: ps command

The ps command in Linux is the abbreviation of Process Status. The ps command lists the processes currently running in the system. The ps command lists snapshots of the current processes, which are those processes at the time of execution of the ps command. If you want to dynamically display process information, you can use the top command. T ...

Posted by jsscart on Wed, 27 Mar 2019 09:42:30 -0700

Introduction to mybatis--Addition, deletion and modification of single tables

Additional operations on single tables Earlier we saw how to build mybatis framework and query operations, here we talk about how to use mybatis to increase user operations. First, insert method is added to user.xml file. The code is as follows <!-- Add user --> <insertid="insertUser"parameterType="cn.itcast.mybatis.po.User ...

Posted by Hooker on Tue, 26 Mar 2019 23:48:28 -0700

Several Simple Load Balancing Algorithms and Their Java Code Implementation

What is Load Balancing Load Balance, which is called Load Balance in English, refers to a set of servers composed of multiple servers in a symmetrical manner. Each server has an equivalent status, and can provide services independently without the assistance of other servers. Through some load-sharing technology, requests sent from out ...

Posted by jason.carter on Mon, 25 Mar 2019 18:21:29 -0700