- 2020.12.07 ~ 11
https://lovecode.tistory.com/120
- URL 입력 폼 제공
- 단축 후 결과 출력
- 동일한 URL을 입력 할 경우 항상 동일한 shortening 결과 값이 나와야 함
- shortening 의 결과 값은 8문자 이내로 생성
- 브라우저에서 shortening URL을 입력하면 원래 URL로 리다이렉트
총 1인
- 김현수 : 프론트, 백엔드
- Springboot
- MYSQL
- HTML
- CSS
- JavaScript
- jdk 11
- mysql 8.0.22
- URL 단축 API
- POST
- Request url
http:localhost:8030/short - Request Body example (JSON):
{
"originURL" : "https://stackoverflow.com/questions/45739517/jpa-repository-lob-column"
}
- Response example (JSON) :
{
"originURL": "https://stackoverflow.com/questions/45739517/jpa-repository-lob-column",
"shortURL": "http://localhost:8030/short/c",
"count": 5
}
- 단축URL Redirect
- GET
- Request url
http://localhost:8030/short/{shortURL}