하루하나
close
프로필 배경
프로필 로고

하루하나

  • ALL (217)
    • 쿠베플로우 kubeflow (1)
    • React Native (1)
      • Expo (1)
    • Programming (187)
      • spring+jwt+react (4)
      • wordpress (3)
      • Vultr (1)
      • Flutter (3)
      • Vue-project (1)
      • Vue-tip (17)
      • AngularJS (12)
      • Bootstrap (2)
      • Book (1)
      • CentOS (5)
      • Code (0)
      • Css (13)
      • Docker (7)
      • Eclipse (1)
      • Freemarker (1)
      • Git (9)
      • Front-End (6)
      • Error (7)
      • Gulp.js (0)
      • Java (12)
      • Python (5)
      • Javascript (19)
      • JPA (5)
      • jQuery (2)
      • Mac (6)
      • MySql (4)
      • Springboot (21)
      • Springboot-blog (0)
      • Daily (1)
      • Springboot-tip (3)
      • Spring (1)
      • Thymeleaf (1)
      • Tomcat (1)
      • Typescript (3)
      • Tool (5)
      • Sql (1)
      • prisma (1)
      • react (1)
    • Life (14)
      • Review (0)
      • Tip (3)
      • 리뷰 (8)
      • 부동산 (2)
  • 홈
  • 태그
  • 미디어로그
  • 위치로그
  • 방명록
[springboot] jpa multiple datasource

[springboot] jpa multiple datasource

- GoalJPA를 사용할 때 여러 데이터베이스에 접속해야 하는 경우 필요한 설정 - Time15min - Enviromentspringboot 1.5, java 1.8, STS3.7, maven - Tutorial핵심은 JPA repository를 관리하는 설정을 필요한 데이터베이스 수만큼 생성해 놓고 사용한다. 자세한 소스는 아래 github에서 확인 할 수 있다. https://github.com/beans9/springboot-jpa-multiple-datasource application에 alpha에 url과 beta에 url을 따로 설정해 놓는다. (편의상 데이터베이스는 H2를 사용한다.) application.propertiesjdbc.driverClassName=org.h2.Driver ..

  • format_list_bulleted Programming/Springboot
  • · 2017. 3. 24.
  • textsms
[springboot] h2 console 사용하기

[springboot] h2 console 사용하기

간단한 개발작업을 할떄 H2메모리 DB를 사용할 떄가 있는데, 작업 후 DB를 조회해보고자 할때 h2 console을 사용하여 확인 할 수 있다. springboot에 application.properties 설정에 spring.h2.console.enabled=truespring.h2.console.path=/h2-console 두줄을 추가한다. 그리고 springboot 웹을 구동 시킨 후에 해당 context로 접속해 보면 아래와 같이 로그인 창이 나온다. Connect를 눌러서 들어가보면 내용을 확인 할수 있고, sql을 작성해서 테스트 해 볼수도 있다.

  • format_list_bulleted Programming/Springboot
  • · 2017. 3. 22.
  • textsms
브라우져 지원 범위 확인 http://caniuse.com

브라우져 지원 범위 확인 http://caniuse.com

신기술을 사용하다보면 하위호환성을 챙겨야 할때가 있다. 아래 사이트에서 기능 검색어를 입력하면 어디까지 지원하는지를 쉽게 볼수 있다 . http://caniuse.com

  • format_list_bulleted Programming/Front-End
  • · 2017. 3. 22.
  • textsms

SVG 파일을 웹폰트로 변환하기

SVG 파일을 웹에서 그냥 쓰기에는 복잡하기도 하고 번거롭기도 하다 .아래 사이트를 이용하여 웹폰트로 만들어 놓으면 bootstrap처럼 웹폰트로 간단하게 만들어서 사용할수 있다. https://icomoon.io/

  • format_list_bulleted Programming/Front-End
  • · 2017. 3. 14.
  • textsms

[AngularJs] 단축키

https://github.com/chieffancypants/angular-hotkeys#angular-hotkeys- github 사용법 간단하네요.

  • format_list_bulleted Programming/AngularJS
  • · 2017. 3. 13.
  • textsms

[Javascript] trim, to camel case, to dashed, and to underscore

Trim String1 2 3 String.prototype.trim = function(){ return this.replace(/^\s+|\s+$/g, ""); };To Camel Case1 2 3 String.prototype.toCamel = function(){ return this.replace(/(\-[a-z])/g, function($1){return $1.toUpperCase().replace('-','');}); };To Dashed from Camel Case1 2 3 String.prototype.toDash = function(){ return this.replace(/([A-Z])/g, function($1){return "-"+$1.toLowerCase();}); };To Un..

  • format_list_bulleted Programming/Javascript
  • · 2017. 3. 2.
  • textsms
  • navigate_before
  • 1
  • ···
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • ···
  • 32
  • navigate_next
반응형
공지사항
전체 카테고리
  • ALL (217)
    • 쿠베플로우 kubeflow (1)
    • React Native (1)
      • Expo (1)
    • Programming (187)
      • spring+jwt+react (4)
      • wordpress (3)
      • Vultr (1)
      • Flutter (3)
      • Vue-project (1)
      • Vue-tip (17)
      • AngularJS (12)
      • Bootstrap (2)
      • Book (1)
      • CentOS (5)
      • Code (0)
      • Css (13)
      • Docker (7)
      • Eclipse (1)
      • Freemarker (1)
      • Git (9)
      • Front-End (6)
      • Error (7)
      • Gulp.js (0)
      • Java (12)
      • Python (5)
      • Javascript (19)
      • JPA (5)
      • jQuery (2)
      • Mac (6)
      • MySql (4)
      • Springboot (21)
      • Springboot-blog (0)
      • Daily (1)
      • Springboot-tip (3)
      • Spring (1)
      • Thymeleaf (1)
      • Tomcat (1)
      • Typescript (3)
      • Tool (5)
      • Sql (1)
      • prisma (1)
      • react (1)
    • Life (14)
      • Review (0)
      • Tip (3)
      • 리뷰 (8)
      • 부동산 (2)
최근 글
인기 글
최근 댓글
태그
  • #css
  • #springboot
  • #JPA
  • #javascript
  • #sts
  • #error
  • #GIT
  • #AngularJS
  • #MySQL
  • #Vue
전체 방문자
오늘
어제
전체
Copyright © 쭈미로운 생활 All rights reserved.
Designed by JJuum

티스토리툴바