반응형

분류 전체보기 629

Django 설치하기

▶ cmd 창을 열어 Virtualenv 셋업 작업을 시작 ▶ dir : 디렉터리 확인 명령어 ▶ cd Documents : Documents 디렉터리로 이동 ▶ mkdir projects : Documents 디렉터리 내에 projects 디렉터리 생성 ▶ cd projects : projects 디렉터리로 이동 ▶ pip install virtualenv : virtualenv 설치 → 파이썬 기반의 프레임워크나 라이브러리, 개발 툴들을 설치하기 전에 서로 다른 개발 환경 마다 프로그램 버전이 꼬이는 것을 방지하기 위해 python을 사용하는 개발 환경마다 분리하고자 virtualenv를 사용 → pip는 파이썬의 프로그램들을 간단한 명령어로 설치할 수 있도록 도와주는 프로그램 ▶ virtualenv..

Django/inflearn 2022.09.14

JPA

- JPA는 기존의 반복 코드는 물론이고, 기본적인 SQL도 JPA가 직접 만들어서 실행해줌 - JPA를 사용하면 SQL과 데이터 중심의 설계에서 객체 중심의 설계로 패러다임을 전환함 - JPA를 사용하면 개발 생산성을 크게 높일 수 있음 plugins { id 'org.springframework.boot' version '2.7.2' id 'io.spring.dependency-management' version '1.0.12.RELEASE' id 'java' } group = 'hello' version = '0.0.1-SNAPSHOT' sourceCompatibility = '17' repositories { mavenCentral() } dependencies { implementation 'o..

Spring/inflearn 2022.09.06

순수 JDBC

spring.datasource.url=jdbc:h2:tcp://localhost/~/test spring.datasource.driver-class-name=org.h2.Driver spring.datasource.username=sa ▶ application.properties에 스프링부트 데이터베이스 연결 설정 추가 스프링부트 2.4부터는 spring.datasource.username=sa를 꼭 추가해야 함 → 추가하지 않으면 Wrong user name or password 오류 발생 plugins { id 'org.springframework.boot' version '2.7.2' id 'io.spring.dependency-management' version '1.0.12.RELEASE' i..

Spring/inflearn 2022.09.03

H2 데이터베이스 설치

https://www.h2database.com/ H2 Database Engine (redirect) H2 Database Engine Welcome to H2, the free SQL database. The main feature of H2 are: It is free to use for everybody, source code is included Written in Java, but also available as native executable JDBC and (partial) ODBC API Embedded and client/server mo www.h2database.com ▶ 링크에 접속해 h2 데이터베이스 설치 ▶ h2 console 실행 → 연결 ▶ drop table if exis..

Spring/inflearn 2022.09.02
반응형