ElevatedButton Background Colorhttps://googleflutter.com/flutter-elevated-button-background-color/profile - circleAvatarhttps://youtu.be/x2P
git init 초기화rm -rf .git rm - 항목제거.name 처럼 . 이 붙은 파일은 숨겨진 파일cd .. 상위 폴더로 이동https://shaeod.tistory.com/930ls list 확인ls -a 숨겨진 파일 모두 확인ls -l 자세한 내
자바스크립트 변수 선언 시, 변하지 않는 값은 const, (대문자로 표기)변할 수 있는 값은 let 으로 선언한다. (let 으로 선언 된 변수는 중복 사용 시 에러알림)
screen width > 800px = @media(min-width : 800px)screen width < 800px = @media(max-width : 800px)
기본으로 h1 은 전체 사용 block element, a 태그는 inline element.하지만, display: block; 이나 display:inline;으로 설정변경 가능전체 가로길이를 나눠 간단히 사용. 2fr 1fr; 은 2대 1 비율.\*CSS, HT
Java다용도 목적객체지향형, class 기반 (함수지향, 함수 순서대로 호출하는 방식 아님)어플리케이션 개발compile > bytecode로 변환, JVM(자바를 실행하기 위한 가상 기계(컴퓨터)) 있는 곳이라면 운영체제 상관없이 작동.백엔드JavaScriptscr
https://disqus.com/ https://livere.com/https://www.tawk.to/※ 로컬호스트 (웹서버) 통해서 작동확인!Web Server for Chrome
작성 후 API 발급ID,PW 삽입 후 RUN. 작동확인JSON <-> JAVA변환https://mvnrepository.com/artifact/org.json/json 에서 Json Gradle 복사해서build.gradle > dependencies
\*참고https://tecoble.techcourse.co.kr/post/2021-05-25-transactional/https://goddaehee.tistory.com/167한묶음의 로직이 모두 처리되지 않은 경우(중간 오류발생으로 인해),예를들
CRUD. 즉, A에 대해 생성(POST)/조회(GET)/수정(PUT)/삭제(DELETE) 요청을 하는 것controller 에서 만든다.
Lombok : 필수 메소드/생성자 등을 자동생성해줘 코드절약해주는 라이브러리 (설치 후 사용)ex. @Getter @Setter@NoArgsConstructor 기본생성자 대신 생성 @RequiredArgsConstructor 꼭 필요한 final자료형 코드를 생성할
CRUD란? 정보관리의 기본 기능→ 생성 (Create)→ 조회 (Read)→ 변경 (Update)→ 삭제 (Delete)Create & Read : Repository 에서 처리(Application, Course.java)Update : Service 에서
Course 클래스 생성/수정일자 추가하기.Timestamped.java (생성/수정일자 찍어주는 java코드만들기)Course 와 같은위치 domain>Timestamped대상 Course클래스에 적용(Timestamped 상속시키기).서버에 적용 (Week02App