본문 바로가기

개발공부/Spring

[MyBatis] resultType 값 받아오기 받아올 때 대문자랑 _(언더바) 조심하기!! 확인하고 값 넣자...^^ 😖원시형의 경우는 언더스코어(_)를 앞에 붙임! 별칭(alias) 데이터 형태(data type) string String date Date map Map hashmap HashMap list List arraylist ArrayList decimal BigDecimal bigdecimal BigDecimal biginteger BigInteger _byte byte _long long _short short _int int _integer int _double double _float float _boolean boolean _byte[] byte[] _long[] long[] _short[] short[] _int[] int[] .. 더보기
Spring 개념 정리 (spring 버전3 다운) 스프링 프레임워크란? : 자바 엔터프라이즈 개발을 편하게 해주는 오픈소스 경량급 애플리케이션 프레임워크 스프링 프레임워크의 특징 : 컨테이너의 역할(객체관리를 해준다) : DI(Dipendency Injection) 의존관계도 설정을 해준다 : AOP(Aspect Orientedn Programming) 핵심기술과 주변기능을 분리 개발해서 런타임시 결합해줌 : POJO 지원(Plain Old Java Object) : 트랜잭션 지원 : 영속성 지원 STS 버전3 다운로드 https://github.com/spring-projects/toolsuite-distribution/wiki/Spring-Tool-Suite-3 spring-projects/toolsuite-distribution the distri.. 더보기
Spring 실습 1회차 1. sts 설치 완료 2. pom.xml 확인 pom.xml이란? - 메이븐의 메인 설정 파일 (프로젝트 루트에 있음) - group id ,artifact id, 버전 설정 - spring dependencies 설정(외부 라이브러리 추가) - 외부라이브러리는 Maven Dependencies 에 jar파일로 추가됨. Maven - 자바 개발의 사실상 표준 빌드 툴 - : 주로 프로젝트 생성 조직이나 기관의 도메인 명 역순으로 표기(예. kr.co.company) - : 프로젝트 명 - : 외부라이브러리 설정하는 모음집 - : 외부라이브러리 설정 더보기