Tag: Spring

0

Overview of the Test Code

Overview of the Test Code1. The purpose and significance of test code.You have to remember the thing that Your system always be processed the management of operational tasks.Actually, If you just thin

0

The usage of Jaxb

1. add The dependencies for JAXB1234567891011121314dependencies { ... compile group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.0' compile group: &#x

0

The usage of Xpath

If you want to use the Xpath thing when you face the situation that you need to parse the xml thing, then You don’t have to import any dependencies because this function is occured from basic java. I

0

Mockito

1. Add the ‘mockito-all’ dependency to your build.gradle file1234567891011dependencies { ... testCompile group: 'org.mockito', name: 'mockito-all', version: '1.

0

The Usage of Selectkey option of Mybatis

1. CREATE TABLEIn my case, I use Oracle 11g Database. 12345678CREATE SEQUENCE PLAYER_NO_SEQ START WITH 1 INCREMENT BY 1 MAXVALUE 10000 MINVALUE 1 NOCYCLE; 12345678CREATE TABLE PLAYER(

0

Usage of JUnit Basic

How to Use Junit1. Calculator ExampleWe need two files for testing JUnit. One is Calculator.java and the other is CalculatorTest.java Let’s start to make the package and files for that. 1234> mkdir