일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 설정
- EL태그
- 오라클
- jstl
- 셋업
- SESSION
- html
- jsp
- 제이쿼리
- 폼태그
- 스프링
- Eclipse
- 깃허브 간단요약
- 마이바티스
- springboot
- Spring
- MySQL
- 깃허브
- 자바스크립트
- java
- 이클립스
- 알고리즘
- 면접
- jsp 내부객체
- Oracle
- 필터체인
- 자바
- jquery
- 버튼
- 설치
- Today
- Total
목록전체 글 (269)
은은하게 코드 뿌시기
200OK요청이 성공적으로 처리됨201Created리소스가 성공적으로 생성됨 (POST 요청 등)204No Content요청 성공, 반환할 콘텐츠 없음301Moved Permanently리소스가 영구적으로 이동됨302Found (Moved Temporarily)리소스가 일시적으로 이동됨400Bad Request잘못된 요청401Unauthorized인증 필요403Forbidden접근 권한 없음404Not Found요청한 리소스를 찾을 수 없음500Internal Server Error서버 내부 오류502Bad Gateway게이트웨이 오류503Service Unavailable서버가 일시적으로 과부하 또는 점검 중
request.getHeader()는 Java의 Servlet API에서 제공하는 메서드로, HTTP 요청의 헤더 값을 가져올 때 사용됩니다. 주로 HttpServletRequest 객체를 통해 사용됩니다.📌 기본 문법java복사편집String headerValue = request.getHeader("Header-Name"); request는 HttpServletRequest 객체입니다."Header-Name"에는 가져오고 싶은 HTTP 헤더 이름을 문자열로 넣습니다.해당 이름의 헤더가 존재하면 값을 반환하고, 없으면 null을 반환합니다.✅ 예시java복사편집String userAgent = request.getHeader("User-Agent"); System.out.println("사용자의 브라..
tr 로 y축 이동 샘플 $('.sortlist').sortable({ handle: '.moviemove1', axis: 'y', opacity: 0.7, helper: function(e, ui) { ui.children().each(function(index) { $(this).width($(this).width()); }); return ui; }, start: function(e, ui) { ui.item.addClass('current'); }, stop: function(e, ui) { ui.item.removeClass('cur..
$('body').css('overflow', 'hidden');$(window.parent.document).find('body').css('overflow', 'auto');window.parent.location.reload();
async: false, // 요청이 완료될 때까지 코드 실행이 멈춤$.ajax({ type: 'post', url: 'example.com/api', data: { key: 'value' }, async: false, // 요청이 완료될 때까지 코드 실행이 멈춤 success: function(response) { console.log('Response received:', response); }, error: function(xhr, status, error) { console.error('Request failed:', error); }});
for 문 만들기Handlebars.registerHelper('for', function(from, to, options) { let result = ''; for (let i = from; i {{#for 0 10}} {{this}} {{/for}} 0 1 2 3 4 5 6 7 8 9 10if 문 {{#if isUserLoggedIn}} Welcome back, user!{{else}} Please log in.{{/if}} 같은지 비교하기Handlebars.registerHelper('setVar', function(varName, varValue, options) { if (!this._vars) { this._vars = {}; } this._vars[va..

1. profile local 설정하기 2.원격 깃주소 변경하기 3. 인텔리제이 디버깅 모드 추가하기 4. 메이븐 업데이트 5. 자바버전 설정하기

rownumber쓰기 귀찮아서cross join을 했는데 경우에 따라서 데이터 처리의 경우에 대해서 고려해 볼 필요가있겠다.!