일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- spring
- mybatis
- 마이바티스
- 자바스크립트기초문법
- 자바
- 웹
- 자바스크립트기초
- js
- 리액트초기세팅
- 코딩
- 전자정부 서버세팅
- 리액트프로젝트세팅
- Javascript
- javaspring
- 웹앱
- 기초 코딩
- 구글 oauth
- 리액트세팅
- react
- Spring Boot
- 기초코딩
- java
- HTML
- 자바스크립트
- 스프링부트
- CSS
- springboot
- 구글캘린더api
- 처음만나는자바스크립트
- 자바스크립트 기초
- Today
- Total
목록Project (38)
인생 디벨로퍼

Controller @GetMapping("/user/detail/{stadiumId}") public ResponseEntity detail(@PathVariable Long stadiumId) { StadiumDetailDTO stadiumDetailDTO = stadiumService.detail( stadiumId); return ResponseEntity.ok().body(new ResponseDto().data(stadiumDetailDTO)); } Service public StadiumDetailDTO detail(Long stadiumId) { Stadium stadium = stadiumRepository.findById(stadiumId).orElseThrow(() -> { throw..
Controller @GetMapping("/company/updateform") public ResponseEntity updateForm(@AuthenticationPrincipal MyUserDetails myUserDetails) { CompanyUpdateFormOutDTO companyResponseOutDTO = companyService .getUpdateForm(myUserDetails.getUser().getId()); return ResponseEntity.ok().body(new ResponseDto().data(companyResponseOutDTO)); } Service public CompanyUpdateFormOutDTO getUpdateForm(Long id) { User ..

sentry.io 란? 오픈 소스 오류 추적 및 모니터링 도구로, 개발자들이 소프트웨어 에러를 감지하고 해결하는 데 도움을 주는 클라우드 기반 플랫폼. Sentry.io는 웹, 서버 및 모바일 애플리케이션에서 발생하는 에러를 수집하고, 이를 개발자들이 이해하기 쉽게 표시하여 빠른 문제 해결을 가능하게 해준다. sentry.io 회원가입 https://github.com/getsentry/sentry-java/tree/master/sentry-spring-boot-starter GitHub - getsentry/sentry-java: A Sentry SDK for Java, Android and other JVM languages. A Sentry SDK for Java, Android and other ..

1. 컨트롤러 @RestController @RequiredArgsConstructor @RequestMapping("/api") public class CompanyController { private final CompanyService companyService; @PostMapping("/joinCompany") public ResponseEntity joinCompany(@RequestBody CompanyRequest.JoinInDTO joinDTO) { CompanyResponse.JoinDTO data = companyService.회원가입(joinDTO); ResponseDto responseDTO = new ResponseDto().data(data); return ResponseEnt..