일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- reactive
- 웹 스터디
- 공유기 서버
- spring reactive
- Spring Framework
- 웹앱
- 웹 커리큘럼
- Spring Batch
- 서버운영
- reactor core
- reactor
- ipTIME
- Today
- Total
목록Spring (48)
Hello World
웹에서 첨부파일은 상당히 문제가 많이 일어나는 부분이기도 합니다. 실제로 프로젝트중에서 첨부파일때문에 오픈이 지연되는 경우도 봤었구요. 제가 이번글에서 쓸 내용은 첨부파일 업&다운로드의 기초적인 개념입니다. 실제 프로젝트에서는 이 내용을 바탕으로 좀 더 보완해야 됩니다. ------------------------------------------------------------------------------------ 1. SQL1. 테이블 생성먼저 다음의 쿼리를 실행시키자.?123456789101112CREATE TABLE TB_FILE( IDX NUMBER, BOARD_IDX NUMBER NOT NULL, ORIGINAL_FILE_NAME VARCHAR2(260 BYTE) NOT NULL, STOR..
In my previous article, Spring and Amazon Web Services, I provided a brief introduction to Spring Cloud AWS module and what you as a developer can expect from it at this point in time. One thing that is not obvious from the official documentation is how to use this module when your Internet connection is restricted by a proxy server. In this post I will outline how to approach passing of proxy c..
I have shown you how to setup a basic Spring 3 MVC web application in my previous article. Reusing that project setup as template, I will show you how to enhance it to work with JDBC. With this you can store and retrieve data from database. We will add a new controller and a data service through Spring so you can see how Spring injection and annotation configuration works together.A direct JDBC ..
About a year ago, I wrote a blog post how to mock Spring Bean. Patterns described there were little bit invasive to the production code. As one of the readers Colin correctly pointed out in comment, there is better alternative to spy/mock Spring bean based on @Profile annotation. This blog post is going to describe this technique. I used this approach with success at work and also in my side pro..
Redis is an in-memory key/value store. It is used as a database, cache and message broker. In this article, we will see some examples of Spring Data Redis. Before we get to start with the examples, we need to first install Redis and configure the server.1. Overview of RedisRedis is an extremely high-performance, lightweight key/value based data store. It provides several operations like persiste..
bootiful microservicespring boot , spring cloud 에 관한 내용이에요 josh long 이 설명하는데요. 직접 코딩하면서 서비스 올리고 디버깅하는거 보면 재미납니다. https://www.youtube.com/watch?v=SFDYdslOvu8
Dropbox 연동 테스트를 할 일이 있어서, Dropbox Java v2 API를 사용해보았다. 실제 예제대로 하면 잘 동작하지 않아서 포스팅 한다. URL : https://www.dropbox.com/developers/documentation/java#tutorial 개발환경: Spring Boot 1.3.1, Maven 폴더 구조 Application.java package me.enterkey; import java.io.IOException; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springfram..
보통에 스타트업은 빠른 프로토타이핑을 통해 MVP(Minimum Viable Product) 로 시장에 진출한다.기능구현에 집중해서 개발하다보니 제대로된 테스트 코드가 없을 때도 있고, 얼마나 많은 에러가 발생할지 가늠하기 쉽지 않은 상황들이 대부분이다.에러는 언제든지 날 수 있다고 가정한다면 얼마나 빠르게 감지하고 Hotfix를 내보내느냐가 고객의 불편을 최소화 할 수 있는 방법이 아닐까 싶다.이번편에서는 Spring 기반의 Application에 간단한 Filter와 Logback을 이용해 초기 시스템에서 간단히 사용할 수 있는 에러 모니터링 기능을 구현해보자.요구사항은 다음과 같다. 1) 협업도구로 쓰고 있는 Slack의 특정 채널에 실시간으로 알람이 되었으면 좋겠다.2) 급한대로 RDBMS의 테이..