옛날 자료 보관용(2014년)
Spring IoC Container
----------
IoC - 가장 중요
AOP
Persistence - JDBC
- ibernate
- MyBatis
MVC
Security
------------------------
프로젝트 관리 도구
Ant - 주로 자바를 컴파일, 테스트 하는 도구
Maven - 컴파일, 테스트 및 프로젝트 관리 기능 가능
Graddle - Ant와 Maven의 장점을 결합하여 만든 도구 --> Groovy 라는 스크립트 언어 사용
Ecplise에 Graddle 플러그인 설치해서 실습..
http://spring.io/
다 설치된 버전 필요할 경우
http://spring.io/tools/sts
http://search.maven.org/
http://projects.spring.io/spring-framework/
http://www.gradle.org/
http://www.gradle.org/docs/current/userguide/userguide.html
http://docs.spring.io/spring/docs/current/spring-framework-reference/htmlsingle/#beans
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <bean id="..." class="..."> <!-- collaborators and configuration for this bean go here --> </bean> <bean id="..." class="..."> <!-- collaborators and configuration for this bean go here --> </bean> <!-- more bean definitions go here --> </beans>