일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 스프링부트기본설정
- 임베디드타입
- jpqlquery
- JPA값타입
- embededtype
- 이해와 원리
- spring
- dockercmd
- springbootH2
- jpa
- gitinitial
- sql
- JPAproxy
- 스프링부트
- 제이피큐엘쿼리
- httppie
- JPA Hint & Lock
- JDBC connection pool
- 에이치투데이터베이스
- 자바제너릭
- OSIV
- javageneric
- MySqlType
- 데이터베이트h2
- Open EntityManager
- Git
- springboot기본설정
- springbootproxy
- JPAmapping
- JPA프록시
- Today
- Total
목록전체 글 (69)
빡코
몽고DB를 C:\node 위치에서 설치하였다. 설치후 port 번호를 재설정 하였을때 아래와 같은 couldn't connet to server ~ 에러가 발생했다. C:\Users\dudtj>mongo --port 포트주소 MongoDB shell version v4.2.2 connecting to: mongodb://아이피주소/?compressors=disabled&gssapiServiceName=mongodb 2019-12-28T14:34:04.774+0900 E QUERY [js] Error: couldn't connect to server 아이피주소, connection attempt failed: SocketException: Error connecting to 127.0.0.1:27017 :..
최근 commit으로 가기 cd \업로드 하고자 하는 디렉토리로 이동 git init git remote add origin [repostory 주소] git remote -v //주소확인 git remote remove origin 처음 프로젝트를 push할 경우에는 히스토리를 합쳐줘야 한다. 이렇게 refusing to merge unrelated histories git pull origin 브런치명 --allow-unrelated-histories **--allow-unrelated-histories 이 명령 옵션은 이미 존재하는 두 프로젝트의 기록(history)을 저장하는 드문 상황에 사용된다고 한다. 즉, git에서는 서로 관련 기록이 없는 이질적인 두 프로젝트를 병합할 때 기본적으로 거부하..
SpringWebView 프로젝트 생성해준다. 패키지의 이름은 com.exe.springwebview 전체 셋팅 구조는 다음과 같다. https://mvnrepository.com/ 에서 maven 태그 복사해 오기 검색창에 itext 검색어 입력하여 다음과 같은 주소에서 태그를 복사하여 pom.xml에 추가해주기 엑셀파일로 내보내는데 필요한 maven 태그이다. https://mvnrepository.com/artifact/org.apache.poi/poi/3.17 https://mvnrepository.com/artifact/net.sourceforge.jexcelapi/jxl/2.6.12 파일업로드 관련 maven 태그 https://mvnrepository.com/artifact/commons-f..
Spring 3.0 + Mybatis 셋팅에서의 전체 Package Explorer는 다음과 같다. 아래의 구조와 같이 패키지를 생성 또는 필요한 파일을 import 해준다. 해당 셋팅과 실습의 실행 주소는 다음과 같다 웹 실행 주소 http://IP주소:8080/springwebmybatis/ 2.pom.xml에 다음과 같은 태그를 추가해 준다. 태그를 추가 후 저장해주면 자동으로 필요한 data를 내려받게 된다. org.mybatis mybatis 3.4.6 org.mybatis mybatis-spring 1.3.2 다음은 com.jdbc.mapper 클래스 생성하고 boardMapper.xml 을 생성한다. 추가로 mybatis-config.xml 복사해와서 붙여넣고 mybatis.config.xm..
1. spring legacy project 생성 프로젝트명: Springwebmybatis 템플릿:Spring MVC project 패키지명: com.exe.springweb 2. pom.xml에 해당 Spring-jdbc 태그 추가하기 *해당 태그가 있어야 스프링 jdbc 사용 가능 org.springframework spring-jdbc ${org.springframework-version} 3. servlet-context.xml 에 beans 추가하기 4. BoardDAO2.jav 클래스 생성해주기 여기서 포인트는 servlet-context.xml 에서 넘겨준 sessionTemplate 통해서 초기화 한 후 사용한다는 점! package com.jdbc.dao; import java.sql...
[최신 버전 R-project 와 R-studio 설치하기] [주의사항] *경로에 한글이름있으면 실행 안될때도있음(영문 경로에 파일 설치) *R을 D:드라이브에 설치 요망, C:드라이브는 library를 저장 못함 https://www.r-project.org/ https://www.rstudio.com/ RStudio Open source and enterprise-ready professional software for data science rstudio.com [실습] 1.D드라이브에 temp 폴더를 생성해준다. 2.해당 폴더에 뽑아내고 싶은 데이터의 원본을 붙여넣기 한다. [명령어] setwd("d:\\temp") ##소스폴더연결 install.packages("KoNLP") ##한글사용(chi..