Web/SpringBoot36 [spring] produces 반환하는 content-type 을 지정. 생략하면 어느타입 (*/*)이나 지원을 의미 예) text/plain 으로 produces를 정의하면 해당요청으로만 가능 이걸로 오버로드가 가능함 매핑 된 요청의 생성 가능한 미디어 유형으로 기본 매핑이 좁아집니다. 형식은 단일 미디어 유형 또는 일련의 미디어 유형이며, 수락이 이러한 미디어 유형 중 하나와 일치하는 경우에만 요청이 매핑됩니다. 3. @RequestMapping 이 사용하는 속성 이름 타입 설명 value String[] URL 값으로 매핑 조건을 부여 (default) method RequetMethod[] HTTP Request 메소드 값을 매핑 조건으로 부여 사용 가능한 메소드는 GET, POST, HEAD, OPTIONS, PUT, DEL.. Web/SpringBoot 2019. 8. 13. Jersey: A message body writer for Java Class and MIME mediatype application/json was not found Jersey: A message body writer for Java Class and MIME mediatype application/json was not found Jersey: A message body writer for Java Class and MIME mediatype application/json was not found after trying to figure out what's my problem I finally decided to ask you how to solve my problem. I've seen different people with the same problem and I tried all the things they were adviced to d... stackov.. Web/SpringBoot 2019. 8. 1. Mybatis Java Configuration for springboot ( mapper 사용 안하고) https://m.blog.naver.com/PostView.nhn?blogId=moonv11&logNo=220450831876&proxyReferer=https%3A%2F%2Fwww.google.com%2F Mybatis Java Configuration 하도 삽질을 해서 정리해보았다. 굵은 글씨 부분에서 고생을 하였으니 염두하면서 보자. package com.moonv... blog.naver.com http://longbe00.blogspot.com/2015/03/mybatis-java-config.html Mybatis java config 설정 MyBatisContext.java - mapper 스캔처리 - SqlSessionTemplate 설정 - 기타 설정 처리 package com.exam.. Web/SpringBoot 2019. 4. 10. Access a File from the Classpath in a Spring Application Access a File from the Classpath in a Spring Application https://www.baeldung.com/spring-classpath-file-access Access a File from the Classpath using Spring | Baeldung Learn how to easily open and read a file on the classpath using Spring's Resource API www.baeldung.com I just announced the new Learn Spring course, focused on the fundamentals of Spring 5 and Spring Boot 2: >> CHECK OUT THE COURS.. Web/SpringBoot 2019. 4. 10. Spring Boot - Apache Kafka 카프카 연동 https://www.tutorialspoint.com/spring_boot/spring_boot_apache_kafka.htm Spring Boot Apache Kafka Spring Boot - Apache Kafka Advertisements Apache Kafka is an open source project used to publish and subscribe the messages based on the fault-tolerant messaging system. It is fast, scalable and distributed by design. If you are a beginner to Kafka, or wan www.tutorialspoint.com 목표 : 카프카 configuratio.. Web/SpringBoot 2019. 3. 29. [mybatis] 다중 Database Setting 목표 - springboot , gradle , mybatis 를 다중 db 클라이언트를 사용 [문제] 1. springboot , mybatis는 기본적으로 mapper 연동이 들어감. 기존 sqlsession 과 방식이 다름. 기존 소스때문에 mapper 연동하는것 말고 기존 mybatis 사용방식으로 사용해야함. 근데 springboot는 xml 방식이 아니라서 다름. 2. 아래 문서대로 따라하면 application.properties 에서 설정 못한다. 자바 소스로 설정해야함. 3. 다중으로 바꾸면서 소스로 바꿨더니 hikariCP 에러 나온다. 4. 설정파일이 안먹어서, alias를 xml로 안하고 어떻게 처리할지 몰랏음. [해결]1. 아래 복붙한 문서대로 일단 따라함.그럼 동작은 가능하나 ... Web/SpringBoot 2019. 3. 21. Spring @Qualifier isn't working without @Primary [duplicate] https://stackoverflow.com/questions/45910669/spring-qualifier-isnt-working-without-primary/45910738 https://stackoverflow.com/questions/39173982/what-is-a-nosuchbeandefinitionexception-and-how-do-i-fix-it Web/SpringBoot 2019. 3. 19. Read properties file outside JAR file https://stackoverflow.com/questions/8775303/read-properties-file-outside-jar-file Web/SpringBoot 2019. 3. 15. Spring boot Actuator를 이용하여 스프링 애플리케이션 정보 모니터링 하기 (java application state/performance check) https://jeong-pro.tistory.com/160 https://supawer0728.github.io/2018/05/12/spring-actuator/ https://stackoverflow.com/questions/35517713/unable-to-access-spring-boot-actuator-actuator-endpoint Web/SpringBoot 2019. 3. 15. config client, Actuator - spring boot 2.1 , 2.x 버전 다른점 보통 config client 를 사용하는 튜토리얼 문서를 보면actuator 가 쓰인다. 이게 1. 버전화 2. 버전이 좀 다르다 . 결론부터 말하자면 설정은 이런식 config serverspring.cloud.config.server.git.uri=~~~~ 여긴 git urlmanagement.endpoint.env.enabled=truemanagement.endpoints.web.exposure.include=*management.endpoints.web.base-path=/management.security.enabled=false config clinetserver.port=8080spring.application.name=applicationspring.cloud.config.uri=http.. Web/SpringBoot 2019. 3. 14. Spring Cloud Config - config server . 프로퍼티 파일 외부화 https://yonguri.tistory.com/entry/Spring-Cloud-Config-Server-%ED%99%98%EA%B2%BD%EA%B5%AC%EC%84%B1%EC%9D%98-%EC%99%B8%EB%B6%80%ED%99%94 https://devguide.tistory.com/entry/%EC%A0%9C4%EC%9E%A5-Spring-Cloud-Config-Config-Client-%EA%B8%B0%EB%B3%B8?category=657594 두가지 자료가 있음. 블로그 http://cloud.spring.io/spring-cloud-static/spring-cloud-config/2.0.0.M9/single/spring-cloud-config.html - 공식문서 위 두개의 설정대로 하.. Web/SpringBoot 2019. 3. 14. Multi Module Project 이란? Multi Module Project정의는 검색하면 바로나온다. 처음. 나는 공통 모듈을 만들고 싶어서 이걸 찾아봄.내가 말하는 공통모듈이란, 예를들어 몽고DB 클라이언트를 마이크로서비스 모든 프로젝트에서 한 클라이언트만 사용하여 나중에 추가 수정이 생길시 한개만 바꾸길 바랫다. (확실하진 않지만) 여태것 다른자료 모두 확인해본 결과 이거는 통짜 프로젝트에서 사용하는것 같다. 마이크로서비스가 아닌.. 뷰, api, 서비스, dao 등 각각 모듈이 있고 그 위에 root 가 있어서 모듈을 전체적으로 나눠 쓰는 것 따라서 내 의도와 다름. 이 방법은 두가지 방법을 사용함. 1. config cloud server 컨피그 서버 - properties 만 바꾸기 가능2. 해당 모듈 -> jar 로 만들어 imp.. Web/SpringBoot 2019. 3. 13. 이전 1 2 3 다음