일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- react
- GIT
- table
- SQL
- Sqoop
- vaadin
- Spring
- 공정능력
- Python
- MSSQL
- xPlatform
- tomcat
- Express
- R
- JavaScript
- window
- 보조정렬
- Android
- plugin
- mapreduce
- SSL
- IntelliJ
- Eclipse
- Java
- Kotlin
- mybatis
- hadoop
- es6
- SPC
- NPM
- Today
- Total
목록java/spring cloud (7)
DBILITY
연동하는데 주력했다. 먼저 dependancy를 추가한다. org.springframework.boot spring-boot-starter-security org.springframework.boot spring-boot-starter-web com.h2database h2 org.mybatis.spring.boot mybatis-spring-boot-starter 2.1.0 application.properties에 db설정 등 처리 #mem base spring.datasource.url=jdbc:h2:mem:testdb;DB_CLOSE_DELAY=- 1;DB_CLOSE_ON_EXIT=FALSE #file base #spring.datasource.url=jdbc:h2:file:/data/testdb..
이전에는 inMemory와 사용자 정의 인증을 살펴보았다. 이번에는 jdbcAuthentication을 사용해 보자. dependancy를 추가한다. org.springframework.boot spring-boot-starter-security org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-data-jdbc com.h2database h2 application.properties에 h2 database설정 및 관련 테이블과 데이터 생성을 추가한다. #mem base spring.datasource.url=jdbc:h2:mem:testdb;DB_CLOSE_DELAY=- 1;DB_CLO..
기본 보안 설정(default security configuration)에 대해 알아보고, 기본 설정을 비활성화(disable)하여 사용자 정의 설정으로 변경해 본다. spring-boot-starter-parent 버전은 2.1.8.RELEASE, spring-cloud 버전은 Greenwich.SR3 이다. maven project 기준으로 Spring Boot App에 security를 추가하기 위해서는 다음과 같이 pom.xml에 security starter dependancy를 추가한다. org.springframework.boot spring-boot-starter-security spring-boot-autoconfigure-2.1.8.RELEASE.jar에 포함된 SecurityAutoC..
actuator info API에 git정보 노출을 위해 사용하는 git-commit-id-plugin에서 발생하는 것으로 보이며, maven build시 다음과 같은 오류가 발생했다. 핵심은 Authentication is required but no CredentialsProvider has been registered 인가? [ERROR] Failed to perform fetch org.eclipse.jgit.api.errors.TransportException: https://github.com/blabla/blabla.git: Authentication is required but no CredentialsProvider has been registered at org.eclipse.jgit...
이전에 작성했던 spring boot actuator + embedded mongodb의 metrics를 visualization tool로 display 해 본다. 먼저 pom.xml에 prometheus dependancy를 추가한다. io.micrometer micrometer-registry-prometheus application.properties에 management.endpoint.prometheus.enabled 와 management.metrics.export.prometheus.enabled는 기본 설정이 true로 별도 설정은 필요하지 않다. docker에 kitematic을 사용해 prometheus와 grafana를 설치한다.다음은 kitematic화면이다. 참고로 docker ..