목록프로젝트/구인구직구현 mini 프로젝트 (5)
Paper.Yellow

1.ResumeController 수정 전 @GetMapping("/person/resumeDetailForm/{resumeId}") public CMRespDto resumeDetailForm(Model model, @PathVariable Integer resumeId) { SessionUserDto userPS = (SessionUserDto) session.getAttribute("principal"); ResumeDetailFormRespDto personPS2 = resumeService.이력서상세보기(resumeId); ResumeFormRespDto personPS = personService.이력서내용가져오기(personPS2.getPersonId()); // 이력서내용가져오기 model..

1.PersonController 수정 전 @GetMapping("/person/noticePerApplierForm/{noticeId}") public CMRespDto findNoticePerApplier(@PathVariable Integer noticeId, Model model) { List appliersDtoList = personService.공고별구직자찾기(noticeId); Notice notice = personService.공고하나불러오기(noticeId); model.addAttribute("appliersDtoList", appliersDtoList); model.addAttribute("notice", notice); return new CMRespDto(1, "공고별 지원자 ..
1.CompanyController 수정 전 @GetMapping("/company/noticeLoadForm") public CMRespDto noticeLoad(Model model) { SessionUserDto userPS = (SessionUserDto) session.getAttribute("principal"); Company company = companyService.유저아이디로찾기(userPS.getUserId()); List noticeRespDtoList = companyService.CompanyId로공고불러오기(company.getCompanyId()); return new CMRespDto(1, "등록 공고 보기 페이지 불러오기 완료", noticeRespDtoList); } ..
깃헙 commit HJH/jsp 구현 및 동작 테스트 완료 · LegdayDev/miniproject1@7ef67e9 Show file tree Showing 7 changed files with 62 additions and 33 deletions. github.com src/main/java/site/metacoding/miniproject/web/PersonController @GetMapping("/person/resumeWrite/{id}") >>>@GetMapping("/person/resumeWrite/{personId}") public String resumeForm(@PathVariable Integer personId, Model model) { ResumeFormDto personPS..
깃헙 주소 HJH/이력서등록 컨트롤러까지 구현 완료 · LegdayDev/miniproject1@59410df Show file tree Showing 8 changed files with 98 additions and 4 deletions. github.com src/main/java/site/metacoding/miniproject/domain/person_skill/PersonSkillDao public interface PersonSkillDao { public void insert(PersonSkill personSkill); public PersonSkill findById(Integer personSkillId); public List findAll(); public void update(P..