Unit testing scheme of application based on spring-boot
Summary
This paper mainly introduces how to write unit test and integration test code for web application based on spring-boot.
The architecture of such applications is generally as follows:
web-structure.png
The program of our project corresponds to the web application section in the figure above. This part is generally ...
Posted by VinzC on Tue, 14 May 2019 14:46:10 +0200
Mybatis principle analysis learning record, mybatis dynamic sql learning record
The following personal learning notes are for reference only. You are welcome to make corrections.
MyBatis is a persistent layer framework that supports customized SQL, stored procedures, and advanced mapping. It mainly accomplishes two things:
Encapsulating JDBC operations
Using Reflection to Interchange Java Classes and SQL Statemen ...
Posted by ScratchyAnt on Sat, 11 May 2019 16:37:13 +0200
Reverse Engineering and Paging Application in ssm
Yesterday, the mybatis reverse engineering and paging applications in spring boot were sorted out. Today, the reverse engineering and paging applications in ssm project are sorted out.
Project running environment: eclipse+jdk1.8+maven+tomcat
Building ssm project
First, create a new maven project, project Archetype selection: maven-archetype-web ...
Posted by phpnoobie on Fri, 10 May 2019 19:39:24 +0200
JDBC Introduction Foundation, Use Steps
# JDBC Introduction Foundation, Use Steps
Recently, in reviewing the knowledge of JDBC, first write a review of the basis of JDBC.
For the understanding of JDBC, the full name of JDBC is Java Database Connectvity, so it is not difficult to write out, that is, using the java language to operate the database. JDBC actually defines ...
Posted by dbdbdb on Fri, 10 May 2019 00:48:03 +0200
Basic knowledge of Java ——JDBC
Author: Nobody
Source: CSDN
Original text: https://blog.csdn.net/h1025372645/article/details/89191301
JDBC
Java DataBase Connectivity,java database connection, in order to reduce the difficulty of operating data, java provides jdbc, according to the characteristics of java object-oriented, many operations are encapsulated.
JDBC ...
Posted by arctushar on Wed, 08 May 2019 21:57:03 +0200