기존

1. 아나콘다 프롬퍼티 anaconda prompt 에서 장고 패키지 설치
1.일단 아나콘다 설치 부터 시작할게용 아나콘다 다운로드 : www.anaconda.com/products/individual Anaconda | Anaconda Distribution Anaconda's open-source Distribution is the easiest way to perform Python/R data science and machine learning on a single machine. www.anaconda.com 1.일단 아나콘다 설치 부터 시작할게용 폴더 설정 Register Anacoda as my default Python 3.8을 선택한 상태로 Install 버튼을 클릭합니다. 이 옵션은 PyCharm과 같은 개발 툴에 아나콘다에 포함되어 있는 Python을 사용하..
이렇게 해주시면 완료입니다 ~ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 encodingFilter org.springframework.web.filter.CharacterEncodingFilter encoding UTF-8 forceEncoding true encodingFilter /* Colored by Color Scripter cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 javax.annotation javax.annotation-api 1.3.2 org.mybatis mybatis-spring 1.3.2 org.mybatis mybatis 3.4.6 org.springframework spring-jdbc ${org.springframework-version} org.apache.commons commons-dbcp2 2.8.0 mysql m..
1 2 3 4 5 6 7 8 9 10 CREATE SEQUENCE //테이블 시퀀스값 INCREMENT BY 1 // 1씩증가 START WITH 1; // 1 CREATE SEQUENCE bidx_b_seq INCREMENT BY 1 START WITH 1; cs 1 INSERT INTO B_BOARD(bidx,originbidx,depth,level_,subject,content,writer,ip,midx)values(bidx_b_seq.NEXTVAL,bidx_b_seq.NEXTVAL,0,0,작성,내용2,김또강t,3,3); cs
1. 우선 데이터 전송객체인 BoardVo 클래스 생성 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 package jspstudy.domain; public class BoardVo { private int bidx; private int originb..
조각남자
'기존' 카테고리의 글 목록 (38 Page)