Spring

·Spring
Getting Started | Validating Form InputThe application involves validating a user’s name and age, so you first need to create a class that backs the form used to create a person. The following listing (from src/main/java/com/example/validatingforminput/PersonForm.java) shows how to do so: pacspring.io 이번 애플리케이션 : 사용자의 이름과 나이를 검증하는 것이 목표  PersonForm 객체 생성 src/main/java/com/example/validatingformi..
·Spring
Getting Started | Serving Web Content with Spring MVCStatic resources, including HTML and JavaScript and CSS, can be served from your Spring Boot application by dropping them into the right place in the source code. By default, Spring Boot serves static content from resources in the classpath at /static (orspring.io 할 거 요청 URL : http://localhost:8080/greeting이 URL에 대한 응답으로 "Hello, World!"라는 인사를 ..
·Spring
Mapping Requests :: Spring FrameworkA reflected file download (RFD) attack is similar to XSS in that it relies on request input (for example, a query parameter and a URI variable) being reflected in the response. However, instead of inserting JavaScript into HTML, an RFD attack relies on thedocs.spring.io @RequestMapping요청을 컨트롤러 메서드에 매핑하는데 사용된다.URL, HTTP method, request parameters, headers, medi..
·Spring
REST APIs Explained - 4 ComponentsHow web applications talk to servers: 1. Basic format; 2. HTTP verbs; 3. URL endpoints; 4. Status codes.mannhowie.com 기본 개념 REST API는 웹에서 정보를 얻고자 하는 클라이언트(사람 또는 애플리케이션)와 그 정보를 접근할 수 있는 서버(애플리케이션 또는 데이터베이스) 간에 가장 일반적으로 사용되는 표준이다.애플리케이션 프로그래밍 인터페이스(API)두 컴퓨터가 웹을 통해 서로 통신할 수 있는 방법배달 앱에서 자체적으로 위치 추적 시스템을 구축하는 대신 Google Maps API를 사용하여 위치 추적을 지원할 수 있다.RESTfulREST 표준을 ..
·Spring
웹 계층에 서블릿(Servlet) API를 기반으로 클라이언트의 요청을 처리하는 모듈로 클라이언트의 요청을 편리하게 해주는 기능을 제공한다.  서블릿(Servlet)자바로 웹을 할 수 있는 기술, 자체도 Java 파일클라이언트의 요청을 처리하도록 특정 규약에 맞춰 Java 코드로 작성하는 클래스 파일아파치 톰캣은 이러한 서블릿들이 웹 애플리케이션으로 실행할 수 있도록 해주는 서블릿 컨테니어 중 하나이다.Spring MVC 내부에서는 서블릿을 기반으로 웹 애플리케이션을 동작하며, 스프링 부트는 기본적으로 아파치 톰캣이 내장되어 있다. Servlet일반적으로 웹서버는 정적인 페이지만을 제공한다. 그렇기 때문에 동적인 페이지를 제공하기 위해서는 웹서버는 다른 곳에 도움을 요청하여 동적인 페이지를 작성해야 한다..
G.H
'Spring' 카테고리의 글 목록 (3 Page)