일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 대이터
- 자료구조
- web 용어
- cudnn
- web 개발
- java역사
- KNeighborsClassifier
- C언어
- Keras
- postorder
- classification
- bccard
- vscode
- broscoding
- 재귀함수
- 웹 용어
- paragraph
- pycharm
- 머신러닝
- mglearn
- 결합전문기관
- web
- discrete_scatter
- tensorflow
- CES 2O21 참여
- CES 2O21 참가
- inorder
- web 사진
- html
- 데이터전문기관
- Today
- Total
목록전체 글 (675)
bro's coding
XML: 설정 정보의 역할과 데이터 송수신 역할 AJAX에서는 데이터 송수신 역할을 한다 JSON: Javascript Object Notation 자바스크립트 객체 표기법, 경량의 데이터 교환 형식 AJAX에서는 구조화된 데이터 송수신 역할을 한다
package step4; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; /** * Servlet implementation class AjaxPostServlet */ @WebServlet("/AjaxPostServlet") public class AjaxPostServl..
Ajax(Asynchronus Javascript And Xml) 비동기 웹통신, 웹통신 기법 > 전체 페이지 로딩 없이 필요한 데이터만 통신 XMLHttpRequest: Ajax통신을 위한 자바스크립트 객체 JSON or XML > AJAX 통신에서 구조화된 데이터를 송수신할 때 사용 웹플그래밍에 있어 비동기 Ajax 통신이란 필요한 데이터만 응답받는 방식이다. 사용자는 페이지 변경없이 필요한 데이터만 응답받음으로 응답여부와 관계 없이 작업을 지속할 수 있다. package step2; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.annota..
JUnit 어노테이션 @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration( locations={"file:src/main/webapp/WEB-INF/spring-model.xml"}) @Test 해당 메서드를 테스트 대상으로 지정 TDD(Test Driven Development) Framework porm.xml junit junit 4.12 test org.springframework spring-test 4.3.14.RELEASE package org.kosta.springmvc04.test; import javax.annotation.Resource; import org.junit.Assert; import org.junit.Test;..
@RequestMapping("findCustomerById.do") public String findCustomerById(String id, HttpServletRequest request) { request.setAttribute("customerVO", new CustomerVO(id, "아이유", "오리")); return "customer-detail"; } @RequestMapping("findCustomerById2.do") public ModelAndView findCustomerById2(String id) { return new ModelAndView("customer-detail", "customerVO", new CustomerVO(id, "코스타아이유", "오리")); }
EncodingFilter org.springframework.web.filter.CharacterEncodingFilter encoding utf-8 EncodingFilter /*
Spring Framework에서 제공하는 FrontControllerServlet인 DispatcherServlet은 spring 설정 파일을 [서블릿이름]-servlet.xml로 찾이서 로깅한다. springmvc1 index.html index.htm index.jsp default.html default.htm default.jsp springmvc org.springframework.web.servlet.DispatcherServlet springmvc *.do