ng-file-upload 라이브러리를 이용해서 파일을 여러개와 다른 컨텐츠들을 보내고 싶을때, 1cs html에 ngf-select를 선언해서 파일을 특정 변수에 담는다. 12345var vm = this; vm.onFileSelect2 = function($files){ vm.file = $files;}Colored by Color Scriptercs ajax 부분에서 arrayKey에 '' 값을 선언해 준다. 12345678910111213 vm.dataFrm = { name:'test', age:10 } Upload.upload({ url: 'fileupload url', fields: vm.dataFrm, // send variable file: vm.file, arrayKey: '' //
- 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..
- 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 ..