Skip to content

Instantly share code, notes, and snippets.

View mingyu-lee's full-sized avatar

Mingyu Lee mingyu-lee

View GitHub Profile
@mingyu-lee
mingyu-lee / spring-introduction
Last active February 24, 2017 03:42
스프링의 소개
<h1 id="스프링의-소개">스프링의 소개</h1>
<h2 id="스프링이란">스프링이란?</h2>
<ul>
<li>자바 엔터프라이즈 개발을 편하게 해주는 오픈소스 경량급 애플리케이션 프레임워크</li>
<li>EJB(Enterprise Java Beans)의 단점을 보완한 프레임 워크</li>
<li>DI(Dependency Injection, 의존성 주입)과 AOP(Aspect-Oriented Programing, 관점 지향 프로그래밍)이 지원되는 경량 컨테이너 &amp; 프레임워크</li>
<li>자바 플랫픔으로서 자바 애플리케이션을 개발하는데 필요한 하부 구조를 포괄적으로 제공한다.</li>
<li>스프링이 하부 구조를 처리하므로 개발자는 애플리케이션 개발에 집중할 수 있다.</li>
package document;
import java.util.List;
/**
* A naive implementation of the Document abstract class.
*/
public class BasicDocument extends Document
{
/** Create a new BasicDocument object