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..
![](https://t1.daumcdn.net/tistory_admin/static/manage/images/r3/default_L.png)
전체 글
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!"라는 인사를 ..
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..
![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FSKYKs%2FbtsIcWViO5U%2FkezOgHG2IeEurl1bOPpB9K%2Fimg.png)
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 표준을 ..
GetPage( name: '/main', page: () => const MainViewPage(), binding: MainBinding(), fullscreenDialog: true, transition: Transition.downToUp, popGesture: true), transition: Transition.downToUp만 적용하면 왼쪽에서 오른쪽으로 가다가 아래에서 올라와서 부자연스럽다 fullscreenDialog: true, popGesture: true 둘 다 써야한다.
![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbZfaKP%2FbtsIa5R4p7F%2FT2kGZ2ByH57Vg1m0mteSAk%2Fimg.png)
https://www.coursera.org/learn/introduction-git-github Introduction to Git and GitHubGoogle에서 제공합니다. In this course, you’ll learn how to keep track of the different versions of your code and configuration files using a popular ... 무료로 등록하십시오.www.coursera.org branch특정 커밋을 가리키는 포인터, 각 브랜치는 프로젝트의 개발 히스토리에서 최신 커밋을 나타낸다.master branch는 프로젝트의 안정된 상태를 나타내며, 새로운 기능을 개발할 때마다 새로운 브랜치를 생성하여 작업한다.각 브랜치에서의 작업..