Home

Spring Bean

Summry 본 문서에서는 Spring Bean에 대해 정리한다. send me email if you have any questions.

Read more

Spring boot application.yml vs application.properties

Summry 본 문서에서는 yml을 properties와 비교정리한다. yml yaml? 최근 스프링이나 쿠버네티스 같은 프로그램의 ‘설정 파일’ 저장 양식으로 많이 쓰이는데, yaml파일의 확장자가 .yml이 된다. send me email if you have any questions.

Read more

Spring boot Service와 ServiceImpl

Summry 본 문서에서는 Service와 ServiceImpl이 나누어진 이유를 정리한다. Service가 뭔지 잘 모르겠다면 Spring boot mysql 연동(mybatis)참고. send me email if you have any questions.

Read more

JavaBean

Summry 본 문서에서는 JAVA Bean에 대해 정리한다. send me email if you have any questions.

Read more

Spring boot mysql 연동(mybatis)

Summry 본 문서에서는 Spring Boot 프로젝트에서 MyBatis Framework를 이용한 MySQL 연동 방법을 정리한다. 본 문서에서 제공하는 예시는 portfolio 테이블의 내용을 get request를 통해 확인해보는 코드이다. 본 문서는 MySQL이 설치되어 있다고 가정하고 내용을 기술한다. 본 문서에서는 gradle 프로젝트를 예제로 삼는다. send me email if you have any questions.

Read more

Spring boot Annotation

Summry 본 문서에서는 Spring boot 개발 시 자주 사용하는 Annotation을 정리한다. JAVA Annotation 정리글 send me email if you have any questions.

Read more

Controller VS RestController

Summry Spring에서 컨트롤러를 지정해주기 위한 어노테이션은 @Controller와 @RestController가 있다. 전통적인 Spring MVC의 컨트롤러인 @Controller와 Restuful 웹서비스의 컨트롤러인 @RestController의 주요한 차이점은 HTTP Response Body가 생성되는 방식이다. 본 문서에서는 @Controller와 @RestController 두 가지 어노테이션의 차이와 사용법을 정리한다. send me email if you have any questions.

Read more