donaricano-btn

<c:if> 의 비교기호(empty,!empty, eq, ne)

- JSTL의 if문 사용시 기호를 통하여 간편하게 제어 할 수 있다


1. empty(null), !empty(not null)

- 값의 null 유무를 판단한다


2. eq(==)

- 값이 같은지 확인

 

3. ne(!=)

- 값이 다름

 

'Back-End > Jsp' 카테고리의 다른 글

[Jsp] Jsp_Pagination_Example(Jsp를 이용한 페이징 처리)  (0) 2016.07.15
[Jsp] MVC  (0) 2016.07.12
[Jsp] Expression Language(EL) - JSP  (0) 2016.07.08
[Jsp] (2)Action Tags_useBean  (0) 2016.07.08
[Jsp] (1)Action Tags_forward&include  (0) 2016.07.07
블로그 이미지

리딩리드

,
donaricano-btn

 Jsp_Pagination_Example(Jsp를 이용한 페이징 처리)


1. Pagination

FullSource: https://github.com/KyleJeong/JSP/tree/master/jspPagination

'Back-End > Jsp' 카테고리의 다른 글

[Jsp] <c:if> 의 비교기호(empty,!empty, eq, ne)  (0) 2016.11.10
[Jsp] MVC  (0) 2016.07.12
[Jsp] Expression Language(EL) - JSP  (0) 2016.07.08
[Jsp] (2)Action Tags_useBean  (0) 2016.07.08
[Jsp] (1)Action Tags_forward&include  (0) 2016.07.07
블로그 이미지

리딩리드

,

[Jsp] MVC

Back-End/Jsp 2016. 7. 12. 14:59
donaricano-btn

 MVC

- MVC stands for Model, View and Controller. 

- It is a design pattern that separates the business logic, presentation logic and data


1. Example

https://github.com/KyleJeong/JSP/tree/master/jspMvc

블로그 이미지

리딩리드

,
donaricano-btn

Expression Language(EL) - JSP

- The EL simplifies the accessibility of data stored in the Java Bean component, and other objects like request, session, application


${expression}


1. param    

index.jsp

process.jsp


2. session

index.jsp

process.jsp


'Back-End > Jsp' 카테고리의 다른 글

[Jsp] Jsp_Pagination_Example(Jsp를 이용한 페이징 처리)  (0) 2016.07.15
[Jsp] MVC  (0) 2016.07.12
[Jsp] (2)Action Tags_useBean  (0) 2016.07.08
[Jsp] (1)Action Tags_forward&include  (0) 2016.07.07
[Jsp] Exception  (0) 2016.07.07
블로그 이미지

리딩리드

,