<%
WebApplicationContext ctx = WebApplicationContextUtils.getRequiredWebApplicationContext( application );
ExampleDAO exampleDAO = (ExampleDAO)ctx.getBean("exampleDAO");
Example example = exampleDAO.get( Integer.parseInt( request.getParameter("id") ) );
%>
<html>
<head>
<style type="text/css">
BODY {
margin-left:0px;
margin-top:0px;
margin-right: 0px;
margin-bottom:0px;
}
</style>
</head>
<body style="margin:0px; padding:0px;">
<%= example.getContent() %>
</body>
</html>
WebApplicationContext ctx = WebApplicationContextUtils.getRequiredWebApplicationContext( application );
ExampleDAO exampleDAO = (ExampleDAO)ctx.getBean("exampleDAO");
Example example = exampleDAO.get( Integer.parseInt( request.getParameter("id") ) );
%>
<html>
<head>
<style type="text/css">
BODY {
margin-left:0px;
margin-top:0px;
margin-right: 0px;
margin-bottom:0px;
}
</style>
</head>
<body style="margin:0px; padding:0px;">
<%= example.getContent() %>
</body>
</html>
위와같은 방법으로 DAO객체를 불러와 jsp에서 바로 사용가능하다.
'Framework > spring' 카테고리의 다른 글
Spring3 @ModelAttribute 사용시 Date 값 매핑방법 (1) | 2012.05.18 |
---|---|
spring3 filter 설정 방법 (0) | 2011.05.30 |
[Hibernate] Spring framework에서 hbm.xml 파일 한꺼번에 관리하기. (0) | 2011.05.19 |
Spring XML설정파일을 위한 12가지 가장 좋은 선택 (0) | 2008.06.20 |
Spring 1# - "스프링 소개" (0) | 2008.03.08 |