Skip to content
yunhwan edited this page Nov 12, 2022 · 10 revisions

Architecture

  • DevelopmentOperations
    MenMeet WEB SERVICE

  • DataBase ERD
    KakaoTalk_20221105_041332785

  • ClassDiagram
    menmeet백엔드 클래스 다이어그램

프로시저 코드
CREATE PROCEDURE MenMeetDatabase.showPostList(IN _category INT, IN _isMentor INT, IN _keyword VARCHAR(20), IN _pageNum INT) BEGIN SELECT * FROM mentoring_post mp WHERE IF (_category IS NULL, mp.category IS NOT NULL , mp.category = _category) AND IF (_isMentor IS NULL, mp.mentoring_target IS NOT NULL, mp.mentoring_target = _isMentor) AND IF (_keyword IS NULL, mp.title IS NOT NULL, mp.title LIKE CONCAT('%',_keyword,'%')OR mp.content LIKE CONCAT('%',_keyword,'%')) ; END

Skill & Spec & Tool

  • React
  • SpringBoot - Java11
  • JPA - Hibernate
  • AWS EC2 - UbuntuOs
  • AWS RDS - MariaDB
  • ETC Tool
    JIRA (협업 관리 도구)
    PostMan (HTTP 동작 확인)
    MobaXterm (AWS EC2 console 접근)
    DBeaver (AWS RDS 접근)
Clone this wiki locally