개발환경 가이드 질문입니다.
- 작성자 :
- 장*영
- 작성일 :
- 2010-06-09 16:31:34
- 조회수 :
- 3,319
- 구분 :
- 개발환경
- 진행상태 :
- 완료
Q
http://www.egovframe.org/wiki/doku.php?id=egovframework:rte:bsl:getting_started
hello world를 찍는 가이드인데
중간 부분에 보면
tiles
URL : http://localhost:8080/swfHelloWorld으로 처음 접근할 때 index.html 파일이 열리게 된다.
index.html
<html>
<head>
<meta http-equiv="Refresh" content="0; URL=spring/start">
</head>
</html
>위에서 보는 것처럼 “spring/start” URL 을 호출한다.
spring/start 에 해당하는 화면은 먼저 설정된 tiles 설정정보에서 찾게 된다.
<tiles-definitions>
<definition name="start" extends="standardLayout">
<put-attribute name="body" value="/WEB-INF/main.jsp" />
</definition>
</tiles-definitions>
(딱 중간쯤에 있습니다.)
위의 소스는 index.html 로 만들면 되는걸로 아는데
그 밑에 있는 소스는 어떤 경로의 어떤 파일로 만들어야 하는지 모르겠습니다.
hello world를 찍는 가이드인데
중간 부분에 보면
tiles
URL : http://localhost:8080/swfHelloWorld으로 처음 접근할 때 index.html 파일이 열리게 된다.
index.html
<html>
<head>
<meta http-equiv="Refresh" content="0; URL=spring/start">
</head>
</html
>위에서 보는 것처럼 “spring/start” URL 을 호출한다.
spring/start 에 해당하는 화면은 먼저 설정된 tiles 설정정보에서 찾게 된다.
<tiles-definitions>
<definition name="start" extends="standardLayout">
<put-attribute name="body" value="/WEB-INF/main.jsp" />
</definition>
</tiles-definitions>
(딱 중간쯤에 있습니다.)
위의 소스는 index.html 로 만들면 되는걸로 아는데
그 밑에 있는 소스는 어떤 경로의 어떤 파일로 만들어야 하는지 모르겠습니다.
A
안녕하세요. 장지영님.
tile과 관련된 소스는
WEB-INF/views.xml 에 작성하시면 됩니다.
좋은 하루 되세요. 감사합니다.
tile과 관련된 소스는
WEB-INF/views.xml 에 작성하시면 됩니다.
좋은 하루 되세요. 감사합니다.