전체 글 (286) 썸네일형 리스트형 Appfuse 프로젝트 소개 출처 : http://javajigi.tistory.com/951. Appfuse 프로젝트 소개Appfuse는 다양한 프레임워크의 조합으로 프로젝트를 진행할 때 템플릿을 생성하기 위한 오픈 소스 프로젝트이다. Appfuse를 이용하면 진행하는 프로젝트의 프레임워크 조합에 따라 샘플 프로젝트를 생성할 수 있다. 이 샘플 프로젝트를 기반으로 개발 환경을 구축하는 것이 가능하다.Appfuse가 지원하는 프레임워크를 살펴보면 다음과 같다.JSF Basic Spring MVC Basic Struts 2 Basic Tapestry Basic위 예는 프리젠테이션 레이어를 담당하는 프레임워크들이다. 그외 Hibernate, IBatis등 다양한 프레임워크의 조합의 템플릿 프로젝트를 생성하는 것이 가능하다.지금까지 진.. Apache Maven 2.0.9 Download Maven 2.0.9http://maven.apache.org/download.htmlcmd>mvn -version출처 : http://javajigi.tistory.com/911. Maven의 Eclipse 플러그인 활용하기Maven 기반으로 개발되어 있는 프로젝트를 Eclipse 프로젝트로 변환하는 작업은 간단하다. Maven의 Eclipse 플러그인을 이용하여 쉽게 Eclipse 프로젝트로 만들 수 있다.프로젝트 디렉토리로 이동한 다음 "mvn eclipse:eclipse" 명령어를 실행하면 Eclipse 기반 프로젝트로 변경된다. Eclipse 프로젝트에 필요한 .project, .classpath 파일들이 자동적으로 생성된다. .classpath 파일을 열어보면 pom.xml 파.. How to do Spring Transaction using Ibatis try { getSqlMapClientTemplate().getSqlMapClient().startTransaction(); getSqlMapClientTemplate().getSqlMapClient().getCurrentConnection().setAutoCommit( false ); getSqlMapClientTemplate().getSqlMapClient().commitTransaction(); getSqlMapClientTemplate().update("modify1", param); getSqlMapClientTemplate().update("modify2", param); getSqlMapClientTemplate().getSqlMapClient().getCurrentConnection().c.. How to do batch with Spring using Ibatis getSqlMapClientTemplate().execute(new SqlMapClientCallback() { public Object doInSqlMapClient(SqlMapExecutor executor) throws SQLException { executor.startBatch(); executor.insert("set", param); executor.update("modify", param); return executor.executeBatch(); } }); getSqlMapClientTemplate().execute(new SqlMapClientCallback() { public Object doInSqlMapClient(SqlMapExecutor executor) throws SQLEx.. 이클립스(eclipse) 플러그인으로 설치한 Flex Builder 3에서 BlazeDS설정방법 http://mudchobo.tomeii.com Flex sites/blogs Flex sites/blogs: Adobe: http://www.adobe.com/devnet/flex/ http://www.adobe.com/products/flex/productinfo/faq/ http://www.adobe.com/cfusion/communityengine/index.cfm?event=homepage&productId=2 http://blogs.adobe.com/ http://weblogs.macromedia.com/mxna/ http://labs.adobe.com/ http://labs.adobe.com/community/ http://www.adobe.com/cfusion/exchange/index.cfm#loc=en_us&view=sn610&viewName=Adobe%20Exc.. 컴포넌트간에 이벤트를 정확히 사용하자. http://www.riakorea.com/bbs/board.php?bo_table=f_jidolstar&wr_id=276&page=2 cal http://blog.flexcommunity.net/?p=11 3D http://blog.fastlanesw.com/?cat=3 ActiveMQ Test...진행중 1. 브로커를 실행한다. 2. 브로커가 정상적인지 확인한다. 3. ActiveMQProducer 생성한다. 4. ActiveMQConsumer 생성한다. 5. ActiveMQBroker 생성한다. 6. ActiveMQ에서 Broker start -> Consumer start -> Producer start Topics에서 Producer와 Consumer를 확인 할 수 있다. Queues에는 QueueName로 등록 된 것 을 확인 할 수 있다. 테스트완료. 이전 1 ··· 32 33 34 35 36 다음