Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- AWT
- 오버로딩
- 안드로이드
- 국제화
- 이클립스
- HTML
- oracle
- mybatis
- layout
- JSP
- 배열
- 메소드
- Java
- Menu
- 기본
- Spring
- 메서드
- JavaScript
- 예외처리
- Graphic
- 에러페이지
- paint
- 어노테이션
- 생성자
- struts2
- 클래스
- OGNL
- 전화걸기
- Eclips
- Android
Archives
- Today
- Total
목록네임스페이스 (1)
note
파일 위치 struts.xml /ch4/hello.jsp HelloWorld.javapackage com.ch4.action; import com.opensymphony.xwork2.Action; public class HelloWorld implements Action{ private String message; //struts2 시스템에서 getMessage()를 호출한다 public String getMessage() { return message; } @Override public String execute() throws Exception { message ="몽롱한 화요일"; return SUCCESS; } } hello.jsp ${message} 대문자 SUCESS는 소문자 sucess를 r..
카테고리 없음
2012. 2. 21. 10:38