Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- Front-End
- 정보처리기사 실기
- spring boot security
- TypeScript
- 스프링부트
- frontend
- 큐넷
- 수제비
- useState
- 백엔드
- 리액트
- TS
- 웹개발자
- Node.js
- JWT
- JavaScript
- JS
- Redux
- Authentication
- 정보처리기사
- 자바스크립트
- 타입스크립트
- It
- 백엔드개발자
- VUE
- 프론트엔드
- security
- React
- spring boot
- spring
Archives
- Today
- Total
목록스프링부트 (5)
솔적솔적
HelloController 안에 @GetMapping("hello-string") @ResponseBody public String helloString(@RequestParam("name") String name) { return "hello" +name; } | @ResponseBody 의미 - @ResponseBody → 이것의 의미는 html에 나오는 body태그가 아니라, http에서 header부와 body가 있는데 body부의 내용을 직접내가 넣어주겠다라는 것이다. 위의 코드 중 return 코드 해석 public String helloString(@RequestParam("name") String name) { return "hello" +name; - 내가 만약 spring이라고 nam..
Back-end/Spring Boot
2022. 1. 25. 04:07