[css] filetree css
angular4 tutorial file tree template 참조 See the Pen filetree css by homin ahn (@beans9) on CodePen.
- Programming/Css
- · 2017. 4. 20.
html5 레이아웃을 잡을때 참고하면 좋을 사이트.레이아웃 말고도 html5에 전반적인 내용이 있음. http://www.html.am/templates/html5-frames-templates/
angular4 tutorial file tree template 참조 See the Pen filetree css by homin ahn (@beans9) on CodePen.
html { background: url(이미지경로) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } css에 위 내용 추가
- GoalSpringBoot에서 mybatis에 DB를 여러개 사용하기 위한 설정 - Time30min - Enviromentjava 1.8, springboot 1.5.2 - Tutorial개발을 하다보면 데이터베이스를 여러개 운영 해야하는 경우가 생긴다. mybatis를 이용할 경우 설정하는 방법인데, 결론적으로는 마음에 들진 않는다. JPA로 설정하는법은 아래 포스팅을 참고2017/03/24 - [Springboot] - [springboot] jpa multiple datasource 우선 기본적으로 application.properties에 DB정보를 작성한다. 편의를 위해 DB는 H2를 사용한다. # DB1spring.db1.datasource.driverClassName=org.h2.Dri..
매번 설치 안하고 나중에 설정하려다보니 주소가 생각 잘 생각 안나 기록 4.0.0 com.exampledemo0.0.1-SNAPSHOTjar testspringboot-jpa-pagination org.springframework.bootspring-boot-starter-parent1.5.2.RELEASE UTF-8UTF-81.8 org.springframework.bootspring-boot-starter-aoporg.springframework.bootspring-boot-starter-data-jpaorg.springframework.bootspring-boot-starter-data-restorg.springframework.dataspring-data-rest-hal-browserorg.fly..
- 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 ..