전체 글(135)
-
[DB 개념] 데이터 모델링
1. 저자 - 저자는 여러개의 글을 작성 할 수 있다. - 저자는 여러개의 댓글을 작성 할 수 있다. 2. 글 - 글은 여러 명의 저자를 가져야 한다. - 글은 여러 개의 댓글을 가질 수 있다. 3. 댓글 - 댓글은 하나의 저자를 가져야 한다. - 댓글은 하나의 글에 소속 되어야 한다. 위 그림은, 1:1, 1:N, N:M 그리고 Mandatory , Optional 개념을 요약한 ERD 표현식입니다.
2023.01.14 -
[DB 개념] 데이터 모델링 Mandatory-Optional
Mandatory - Optional 관계에서 1:N 관계를 추가한 ERD 표현이다.
2023.01.14 -
[DB 개념] 데이터 모델링 1:1, 1:N, N:M
3가지의 관계형 표현식이다.
2023.01.14 -
[DB개념] 데이터 모델링 - key
+ 추가 개념 자식 테이블의 FK는 부모 테이블의 PK이다.
2023.01.14 -
[error] No matching variant of org.springframework.boot:spring-boot-gradle-plugin:3.0.1 was found. The consumer was configured to find a runtime of a library compatible with Java 11, packaged as a jar, and its dependencies declared externally, as well a..
No matching variant of org.springframework.boot:spring-boot-gradle-plugin:3.0.1 was found. The consumer was configured to find a runtime of a library compatible with Java 11, packaged as a jar, and its dependencies declared externally, as well as attribute 'org.gradle.plugin.api-version' with value '7.6' but: - 인텔리제이 (community 버전, 무료버전) - 맥OS 환경 - gradle - java 11 https://start.spring.io/ 에서 zi..
2023.01.05 -
[vue] Missing space before function parentheses.eslintspace-before-function-paren
vue create로 첫 프로젝트를 만들자마자 여러 에러가 떠서 한시간 동안 설정 하느라 고생하였다. 아래 설정을 .eslintrc.js에 넣으면 많은 에러가 해결이 된다......ㅡㅡ (프로젝트 시작부터 이러고.... 아 진짜 너무 화났다.) module.exports = { root: true, env: { node: true, }, extends: [ "plugin:vue/essential", "@vue/standard", "@vue/typescript/recommended", "standard", ], parserOptions: { ecmaVersion: 2020, }, rules: { "no-console": process.env.NODE_ENV === "production" ? "warn" :..
2022.12.27