목록gradle (12)
투케이2K
[환경 설정]저장소 : Bitbucket / Git사용 목적 : 소스 코드 버전 관리 실시 [설 명] # ----------------------------------------------------------------------------------[환경 설정]# ----------------------------------------------------------------------------------저장소 : Bitbucket / Git사용 목적 : 소스 코드 버전 관리 실시# ----------------------------------------------------------------------------------# [설 명]# ----------------------------..
[개발 환경 설정]개발 툴 : AndroidStudio개발 언어 : Java / Kotlin [방법 설명] 1. 안드로이드 개발 시 라이브러리 저장소 호출 참고 되는 Jcenter 가 2024-08-15 일 기준 완전 지원 중단 (서버 다운) 발표2. 안드로이드에서 Repository 저장소 참고 시 Jcenter 가 우선 순위로 지정 되어 있거나, 단일 선언 된 경우 build.gradle 수정 필요build.gradle 소스 코드 예시 : repositories { google() mavenCentral() maven { url https://maven.google.com } maven { url https://www.jitpack.io }}3. 라이브러리 변..
[개발 환경 설정] 개발 툴 : AndroidStudio [소스 코드] android { applicationVariants.all { variant -> if (variant.buildType.isDebuggable()){ // [개발 모드 인 경우] // [변수 선언 수행] def list = [] // [add 사용해 list 데이터 추가] list.add("twok"); list.add(29); // [로그 출력력] println("") println("------------------------------------------------") println("[Log Print]") println("------------------------------------------------") ..
[개발 환경 설정] 개발 툴 : AndroidStudio [소스 코드] // ----------------------------------------------------------------------------------------- // TODO [플러그인 적용 실시] plugins { // [안드로이드 플러그인] id 'com.android.application' // [코틀린 플러그인] id 'kotlin-android' // [파이어베이스 및 구글 서비스] //id 'com.google.gms.google-services' } // ---------------------------------------------------------------------------------------..
[개발 환경 설정] 개발 툴 : inteli j 개발 언어 : spring [gradle - 소스 코드] plugins { id 'org.springframework.boot' version '2.7.0' id 'io.spring.dependency-management' version '1.0.11.RELEASE' id 'java' // TODO [war file create] id 'war' } group = 'com.admin' version = '0.0.1-SNAPSHOT' sourceCompatibility = '1.8' //configurations { // compileOnly { // extendsFrom annotationProcessor // } //} // TODO [war 파일..
[개발 환경 설정] 개발 툴 : 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 [방법 설명]
[개발 환경 설정] 개발 툴 : inteli j 개발 언어 : spring [방법 설명] plugins { id 'org.springframework.boot' version '2.6.7' id 'io.spring.dependency-management' version '1.0.11.RELEASE' id 'java' // TODO [war file create] id 'war' } group = 'com.manager' version = '0.0.1-SNAPSHOT' sourceCompatibility = '1.8' //configurations { // compileOnly { // extendsFrom annotationProcessor // } //} // TODO [war 파일 빌드 명칭 ..
[개발 환경 설정] 개발 툴 : AndroidStudio 개발 언어 : java [원 인] 1. 안드로이드 build.gradle 의존성 설정 문제 [해결 방법] 1. build.gradle 파일에서 의존성 설정 실시 implementation 'androidx.annotation:annotation:1.1.0' androidTestImplementation 'androidx.annotation:annotation:1.1.0' [참고 사이트] https://stackoverflow.com/questions/56784213/cannot-find-a-version-of-androidx-annotationannotation-that-satisfies-the-ver Cannot find a v..
[개발 환경 설정] 개발 툴 : inteli j 개발 언어 : spring [해결 방법] [1] 방법 : @SpringBootTest 어노테이션 삭제 [2] 방법 : mapper.xml 에서 mybatis 설정 부분 확인 [3] 방법 : controller , service 부분에서 설정된 어노테이션 확인
[개발 환경 설정] 개발 툴 : inteli j 개발 언어 : spring [폴더 및 파일 설정] [소스코드 : application.yml] # [공통으로 사용] spring: # [profiles 가 실제로 배포할때 따라가는 이름] profiles: active: prod devtools: livereload: enabled: true # datasource: # driver-class-name: oracle.jdbc.OracleDriver # url: jdbc:oracle:thin:@115.68.175.205:1521:username # username: test # password: test123 thymeleaf: cache: false server: port: 7000 ..
[개발 환경 설정] 개발 툴 : inteli j 개발 언어 : spring [폴더 및 파일 설정] [소스 코드] [소스코드 : build.gradle] plugins { id 'org.springframework.boot' version '2.5.4' id 'io.spring.dependency-management' version '1.0.11.RELEASE' id 'java' // war file create id 'war' } group = 'com.project' version = '0.0.1-SNAPSHOT' sourceCompatibility = '1.8' //configurations { // compileOnly { // extendsFrom annot..