본문 바로가기

이카루스의 날개76

Spring 프레임워크 개발환경 세팅 이 문서는 Spring 프레임워크를 이용하여 개발을 진행하기 위하여 필요한 개발 환경에 대하여 다룬다. 각각의 항목에 대한 구체적인 내용은 해당 Space에 문서를 참조하도록 할 것이다. 그러나 이 문서에서 제시하는 방향을 개발환경을 세팅하고 개발을 진행할 경우 Spring 프레임워크를 이용하는 애플리케이션 뿐만 아니라 대부분의 웹 애플리케이션 개발에 유용하게 사용될 것이다. Table of Contents Eclipse 개발툴 설치 Tomcat 서블릿 컨테이너 설치 및 환경 세팅 MySQL 데이터베이스 설치 및 환경 세팅 Spring 프레임워크를 위한 템플릿 애플리케이션 생성 ANT를 이용한 효율적인 애플리케이션 개발 프로세스 참고문헌 Eclipse 개발툴 설치 JDK, Eclipse 개발 환경 JDK.. 2008. 5. 21.
Eclipse 3.3에서 Spring 설치하기.. Spring IDE http://springide.org/updatesite/ Point the Eclipse Update Manager to http://springide.org/updatesite. Don't try to install the "Spring IDE Dependencies (only for Eclipse 3.2.x)" from the "Dependency" category on Eclipse 3.3. This feature is intended only for Eclipse 3.2 and is to keep Spring IDE backward-compatible. You will not be able to continue with the installation if you select .. 2008. 5. 21.
IBatis 관련 링크 모음 (네이버 자바프레임워크 위키) IBatis pdf 문서 다운로드 링크 SQL Maps2.0 개발자 가이드(한글판) SQL Maps2.0 tutorial(한글판) 번역문서 Introduce Ibatis - ibatis 2.0에 대한 소개 Object-Relational Mapping with SQLMaps - ibatis를 이용한 Object-Relational Mapping(OnJava 2005.02.02). 강좌및 관련작성문서 ORM의 또 다른 핵 iBATIS SQLMaps - 마소에 실렸던 SQLMaps관련 기사 ibatis tip - ibatis 관련 팁 Spring SQLMaps integration - Spring과 iBATIS SQLMaps의 연동 관련 설정.(작업중) DDL2iBatis-Code Generator For .. 2008. 5. 21.
iBATIS SQL Maps 12.5. iBATIS SQL Maps The iBATIS support in the Spring Framework much resembles the JDBC / Hibernate support in that it supports the same template style programming and just as with JDBC or Hibernate, the iBATIS support works with Spring's exception hierarchy and let's you enjoy the all IoC features Spring has. Transaction management can be handled through Spring's standard facilities. There are.. 2008. 5. 21.
Spring Framework 설치법 Eclipse3.2 http http://www.eclipse.org/downloads/ Spring IDE (Eclipse3.2 추천) : http://springide.org/updatesite/ Installation Spring IDE is a set of Eclipse plugins packed as a feature. Thisfeature is hosted on a website (aka updatesite) which is accessed byEclipse's update manager. Spring IDE requires Eclipse's GraphicalEditingFramework GEF. The following instructions describe how to install Spr.. 2008. 5. 21.
Eclipse 북마크 매번 이클립스 바뀔때마다 plugin Update Site의 Bookmarks를 찾아야 하는 불편함 때문에 export를 해 두었는데 시스템 날아가면 또 끝장인지라 blogging 해 주는 것이 좋겠네요 ^^ xml version="1.0" encoding="UTF-8"?>  bookmarks>     site name="Spring IDE updatesite" url="http://springide.org/updatesite/" web="false" selected="false" local="false"/>     site name="Aptana" url="http://update.aptana.com/install/3.2/" web="false" selected="false" local="fals.. 2008. 5. 21.
리눅스 MySQL설치2 출처 : http://cafe.naver.com/nautes74.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=149 === 리눅스 Mysql 컴파일 및 설치방법 === 참조 사이트 http://tunelinux.pe.kr 기존 RPM 버전 확인 #rpm -qa | grep mysql http://www.mysql.com Downloads > Red Hat Enterprise Linux RPM downloads 기존 버전 삭제 #rpm -e MySQL리스트항목 --nodeps 압축해제 #tar zxvf mysql-5.0.18.tar.gz -C /tmp 압축해제 /tmp/ 이동 #cd /tmp/mysql-5.0.18 #./configure --help ( 옵션 확인 ) 주.. 2007. 9. 4.
리눅스 MySQL 설치1 출처 : http://blog.naver.com/kissmelip?Redirect=Log&logNo=20040515660 mysql을 받는다. 예) xx.tar.gz 압축을 푼다 tar -xvzf xx.tar.gz 컴파일 설정을 한다. ./configure --prefix=/usr/local/mysql localstatedir=/usr/local/mysql/data --with-charset=euckr 컴파일 make 컴파일 후 설치 make install 디비를 만든다 /usr/local/mysql/bin/mysql_install_db 유저를 만든다 useradd -M mysql ysql이라는 사용자 권한으로 바꾼다. chwon -R mysql:mysql /usr/local/mysql/data mysq.. 2007. 9. 4.