Archive: 2019/12

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

Interpark - Lombok in Intellij

Config Default Spring Project.If you can’t config Spring Project then please read the article before following this. Add the dependencies at the build.gradle1234567891011121314151617181920212223242526

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(