본문 바로가기

Framework

(24)
Spring -WS ---------------------------------------- JDK1.6 Use ---------------------------------------- Test Start - 참조 URL - [개발자들 블로그] http://static.springframework.org/spring/docs/2.5.x/reference/remoting.html#remoting-web-services-jaxws-export-standalone [한국] http://openframework.or.kr/Wiki.jsp?page=SpringWebServiceServerComponents http://oldprogrammer.tistory.com/tag/WebService http://eclipse4j.tistor..
Getting Started with OSGi http://neilbartlett.name/blog/osgi-articles/ The following is a list of links to my tutorial series Getting Started with OSGi which is currently running on EclipseZone. Unfortunately on EclipseZone the new posts push the older ones off the front page, so if you want to refer back to an earlier item in the series then you have to go digging through the forums. Therefore for convenience I will be ..
SPRING FRAMEWORK CHANGELOG [ 2008-12-05 ] http://static.springframework.org/spring/docs/3.0.0.M1/changelog.txt SPRING FRAMEWORK CHANGELOG ========================== http://www.springframework.org Changes in version 3.0.0.M1 (2008-12-05) ---------------------------------------- * revised project layout and build system (module-based sources, bundle repository) * updated entire codebase for Java 5 code style (generics, varargs, StringBuil..
Spring 3.0.0.M1 First Spring Framework 3.0 milestone released Posted on December 5th, 2008 by Juergen Hoeller in Spring. I'm pleased to announce that Spring Framework 3.0 M1 is finally available for download! This release features several major changes, including a start of the major 3.0 themes such as EL and REST support: revised project layout and build system with module-based sources updated entire codebase..
SpringOne Americas 2008 http://americas.springone.com/ 다른 S1A 소식.. http://ptrthomas.wordpress.com/ 빨리 3.0을 접해보고 싶다. ----------------------------------------------------------------------------------- 개발자로써 정말 가고싶은곳이나 못가는 제 자신이 너무 한심해지는 이유는 무엇일까? -----------------------------------------------------------------------------------
spring2.5 session webutil 적용하기 2 package com.yahaitt.web; import java.util.Set; import javax.servlet.http.HttpServletRequest; import org.springframework.web.util.WebUtils; import com.yahaitt.model.User; import com.yahaitt.service.UserManager; import com.yahaitt.util.CookieUtil; public class SessionUser { private String id; private String name; private String loginname; private Integer status; private Set resPermissions; private..
Spring2.5 Session WebUtils적용 package web; import bus.*; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.springframework.validation.Validator; import org.springframework.web.bind.ServletRequestDataBinder; import org.springframework.web.servlet.ModelAndView; import org.springframework.web.servlet.mvc.multiaction.MultiActionController; import org.springframework.web.servlet.view...
ibatis iterate 테스트 ------------------------------------------------------------------------------------- /** * ibatis iterate * @param request * @param response * @return */ @RequestMapping("/ibatisIterate.do") public void ibatisIterate(ModelMap model, HttpServletRequest request){ ArrayList alDojo = new ArrayList(); alDojo.add("3"); alDojo.add("64"); alDojo.add("23"); HashMap subjectList =new HashMap() ; subjectLi..