Back-end

Back-end/eGovFrame

[eGovFrame] 개발 환경 구축

전자정부프레임워크 통합 개발환경 설치 https://www.egovframe.go.kr/home/ntt/nttRead.do?pagerOffset=0&searchKey=&searchValue=&menuNo=65&bbsId=4&nttId=1748 교육자료 | 표준프레임워크 포털 eGovFrame 처리중입니다. 잠시만 기다려주십시오. www.egovframe.go.kr C드라이브에 압축 해제 후 이클립스 실행시키면 됨! jdk, tomcat, maven 등등 다 들어가있음! SVN 설치 https://www.visualsvn.com/downloads/ Downloads | VisualSVN The most favored way to setup and maintain an enterprise level Apac..

Back-end/Node.js

[Node.js] npm이란? npm사용법

npm이란? npm(Node Package Manager)은 Node.js, JavaScript에서 패키지를 관리하고 설치하는 도구 npm 사용법 https://www.npmjs.com/ npm | Home Bring the best of open source to you, your team, and your company Relied upon by more than 17 million developers worldwide, npm is committed to making JavaScript development elegant, productive, and safe. The free npm Registry has become the center of Java www.npmjs.com npm 공식 웹 사이..

Back-end/SpringBoot

[Spring Boot] JPA 기본 사용법

application.properties #port 변경 server.port=8081 #thymleaf cashe false spring.thymeleaf.cache=false #자동 런 spring.devtools.restart.enabled=true spring.devtools.livereload.enabled=true spring.flyway.enabled=true spring.flyway.locations=classpath:db/migration #테스트 테이블 생성 (테스트할땐 create 테스트 끝나면 none) spring.jpa.hibernate.ddl-auto=none #데이터베이스 접속 정보 spring.datasource.url=jdbc:oracle:thin:@127.0.0.1:15..

Back-end/MongoDB

[MongoDB] Model & Schema

models 폴더에 User.js 파일을 만들어주시고 const userSchema = mongoose.Schema({ }) 스키마 안에 필요한 필드를 만들어주고 const User = mongoose.model('User', userSchema) 모델에 담아서 module.export = {User} 내보내주면 됩니다. const mongoose = require('mongoose'); const userSchema = mongoose.Schema({ name: { type: String, maxlength: 50 }, email: { type: String, trim: true, unique: 1 }, password: { type: String, maxlength: 5 }, lastname: { t..

eunjin-park
'Back-end' 카테고리의 글 목록 (5 Page)