About the role of Spring Controller and Service.
During I work as Java developer with Spring Framework, I was thrown into the confusion of the role. How do I build the MVC pattern?, What is better thing?I can’t always answer about these questions th
During I work as Java developer with Spring Framework, I was thrown into the confusion of the role. How do I build the MVC pattern?, What is better thing?I can’t always answer about these questions th
1. The need of Spring Framework -> Third party place for creating the java objects.Have you ever thought about the reason why the Spring framework was borned? Actually When I studied this framework
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
1. add The dependencies for JAXB1234567891011121314dependencies { ... compile group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.0' compile group:
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
1. Cofiguration of the json environment.build.gradle12345678910111213dependencies { ... compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '
This article will skip the configuration of Spring Framework Environment basically because It’s not main focus of this and It’s too longer then the thing related to the spring test. If you want to kno
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(
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