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 |
Tags
- 메소드
- 클래스
- JavaScript
- 생성자
- layout
- 국제화
- mybatis
- 어노테이션
- Java
- Menu
- AWT
- 이클립스
- 전화걸기
- 예외처리
- HTML
- Spring
- 배열
- Android
- 메서드
- 기본
- 안드로이드
- 에러페이지
- 오버로딩
- Eclips
- Graphic
- paint
- JSP
- struts2
- OGNL
- oracle
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