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
- angular button
- 앵귤러 모달
- mysql if
- Oracle LISTAGG 사용 예시
- 스크롤 이벤트
- angular route
- 검색
- angular animation
- 호버
- TAILWIND
- route
- 모달
- Ionic modal
- ApexChart
- 아이오닉 스크롤 이벤트
- formgroup
- angular modal
- flex-1
- 앵귤러 애니메이션
- prisma
- 옵저버블
- scroll
- 셀렉트박스 커스텀
- Angular Router
- ajax 사용 예시
- Router
- 스크롤 이벤트 감지
- egov spring ajax 사용 예시
- summary
- modal
Archives
- Today
- Total
깜놀하는 해므찌로
@PathVariable 조건 다중 입력 값 설정 || 본문
반응형
SMALL
@RequestMapping(folderPath + "{proc:pop|modal}.do")
public String pop(@ModelAttribute("searchVO") EmailVO searchVO, ModelMap model, HttpServletRequest request, @PathVariable String proc) throws Exception {
String result = "";
if("pop".equals(proc)){
result = ".mPopLayout:/" + folderPath + proc;
}else{
result = folderPath + proc;
}
return result;
}
1. 단순히 변수로써 사용할 수도 있으나, || (or) 조건을 걸어 이처럼 유용하게 활용할 수 있다.
반응형
LIST
'IT' 카테고리의 다른 글
JavaScript checkbox 자바스크립트 체크박스 (0) | 2022.07.04 |
---|---|
JavaScript Modal 모달창 열기 구현 (0) | 2022.07.04 |
HeidiSQL 하이디 SQL ROOT 권한 (0) | 2022.07.04 |
MySql Sum & IF 활용 (0) | 2022.07.04 |
MyBtis foreach / selectKey 활용 예시 (0) | 2022.07.04 |