목록Maria (3)
투케이2K
[개발 환경 설정] 개발 툴 : inteli j 개발 언어 : spring [application.yml 접속 정보 작성] spring: # [profiles : 배포 시 설정 이름 : spring 내 설정] profiles: active: prod # [devtools : spring 내 설정] devtools: livereload: enabled: true # [datasource : spring 내 설정] # [url : port 및 servername 작성] # [username : 스키마 명칭] # [password : 비밀 번호] datasource: driver-class-name: org.mariadb.jdbc.Driver jdbc-url: jdbc:mariadb://3.44.138.6..
[개발 환경 설정] 개발 툴 : inteli j 개발 언어 : spring [컨트롤러 : DB_Maria_Api_Controller : 방법 [1] 소스 코드] // TODO [SEARCH FAST] : [테스트 BLOB 이미지 조회] @GetMapping(value = "/TEST_BLOB_SELECT", produces = MediaType.IMAGE_JPEG_VALUE) public @ResponseBody byte[] TEST_BLOB_SELECT(@RequestParam Map param){ // [쿼리 파람 방식] System.out.println("\n"); System.out.println("================================================"); S..
[개발 환경 설정] 개발 툴 : inteli j 개발 언어 : spring [전체 폴더 구조] [다중 데이터 베이스 연결 설정] [DB_Maria_Api_Controller] package com.test.mobile_univ.A_Controller.DB_Maria_Controller; import com.test.mobile_univ.B_Service.DB_Maria_Service.DB_Maria_Api_Service; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import java.util.Map; // TODO [크로스 도메인 ..