일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
- Linux
- 리액트
- REACT
- jenkins github 연동
- docker network
- grpc
- Jenkins
- nginx
- jpa
- MongoDB
- IntelliJ
- 리눅스
- Docker
- jenkins jdk
- Jenkins Pipeline
- jenkins install
- gradle
- grafana
- MySQL
- subnetmask
- jenkins 설치
- jenkins maven
- java
- vue.js
- CI/CD
- spring
- error
- Spring Boot
- jenkins github
- JavaScript
- Today
- Total
목록BACK (34)
뭐든 즐기면서 ;)
Error 내용 A problem occurred configuring root project 'edit'. > Could not resolve all files for configuration ':classpath'. > Could not resolve org.springframework.boot:spring-boot-gradle-plugin:3.0.6. Required by: project : > org.springframework.boot:org.springframework.boot.gradle.plugin:3.0.6 > No matching variant of org.springframework.boot:spring-boot-gradle-plugin:3.0.6 was found. The consu..
import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.security.config.annotation.web.builders.HttpSecurity; import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity; import org.springframework.security.web.SecurityFilterChain; import static org.springframework.security.config.Cu..

1. dotenv 패키지 설치 > npm i dotenv app.js에 하단 내용 추가 let cookieParser = require('cookie-parser'); let logger = require('morgan'); ... /** Start of 환경 파일 세팅 */ const node_env = process.env.NODE_ENV; const enum_env = Object.freeze({ local : 'local' ,development: 'development' ,production: 'production' }); let envPath = '.env_'; switch (node_env) { case enum_env.local: envPath = envPath.concat(enum_env..
필요 라이브러리 다운로드 > npm install --save express-graphql graphql-tools mongoose db_connection.js const mongoose = require('mongoose'); const uri = 'mongodb://:@/data?directConnection=true&serverSelectionTimeoutMS=2000&authSource=admin&appName=mongosh+1.7.1' const dbConnect = () => { mongoose.Promise = global.Promise; // new ( 비동기 처리 ) mongoose.connect(uri, { useNewUrlParser: true }); const connection ..

spring bean xml 파일 적용 방법 /main/webapp/WEB-INF/web.xml 에 아래 내용 추가 /webapp/WEB-INF/web.xml 에 적은 경로에 맞게 spring bean xml을 생성합니다. 위 파일에 태그를 추가합니다. attribute로는 'location'을 갖고, 값은 "classpath:.."로 작성합니다. 또, 태그에 xmlns:context="

https://co-de.tistory.com/92 https://www.lesstif.com/software-architect/apidoc-rest-api-rest-api-documentation-1-98926722.html APIDoc 으로 REST API 문서화 하기(REST API documentation) #1 version 이 1.0.0 보다 낮으면 API 문서에 접근할 경우 무한 로딩하니 주의하세요. www.lesstif.com 로컬에 만들기 # apidoc.json 내용 { "name": "maum_data_renewal", "version": "1.0.0", "description": "Rest API doc", "title": "maum data API doc", "url" : "htt..

프로젝트 트리 tool-api : api 서버 common : manager와 user 모듈에서 공통으로 사용할 코드 (jar libarary로써 사용할 예정) manager : 관리자 사이트 user : 사용자 사이트 tool-client : api 요청 클라이언트(front) react tree 구조 Root 프로젝트 생성 *주의 : tool-api 폴더 아이콘에 파란색 박스가 보여져야만 프로젝트로써 생성되어진 것입니다. 만약 저 아이콘이 보이지 않는다면, build.gradle 파일 우클릭하여 Link gradle 해주시면 됩니다. 그러면 아래와 같이 Gradle 빌드 툴이 보여질 것입니다. 모듈 생성 tool-api 폴더 하위에 module 2개와 module 2개에서 사용할 공통 코드들을 모아놓..