전체 글93 스프링부트 api응답을 json으로 하기 먼저 User라는 클래스를 만든다. package com.example.myapp; import lombok.AllArgsConstructor; import lombok.Getter; import lombok.Setter; @Setter @Getter @AllArgsConstructor public class User { String email; String name; } controller에 User정보를 받아오는 api를 만든다. @RequestMapping("/api/v1/user") @ResponseBody public User getUser(){ return new User("user@email.com","user name"); } http://localhost:8080/api/v1/user를 .. 2021. 2. 18. 리액트에서 api호출하고 데이타를 받아와서 보여주기 먼저 서버에서 데이타를 받아올 api 함수를 먼저 만든다. api.js 파일을 생성해서 만들자 fetch라는 함수를 이용해서 api를 만든다. fetch함수 사용법은 다음url을 참조한다. developer.mozilla.org/ko/docs/Web/API/Fetch_API/Fetch%EC%9D%98_%EC%82%AC%EC%9A%A9%EB%B2%95 Using Fetch - Web API | MDN Fetch API를 이용하면 Request나 Response와 같은 HTTP의 파이프라인을 구성하는 요소를 조작하는것이 가능합니다. 또한 fetch() 메서드를 이용하는 것으로 비동기 네트워크 통신을 알기쉽게 기술할 수 있 developer.mozilla.org 호출할 서버는 이전에 만든 스프링부트의 url을.. 2021. 2. 18. 스프링부트 CORS 적용하기 클라이언트에서 api 호출시 다음과 같은 에러가 날때가 있다. Access to fetch at 'http://localhost:8080/api/v1/hello' from origin 'http://localhost:3000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled. 이오류에 대해서는 다음을 참조하자 developer.mozilla.org/.. 2021. 2. 17. IntelliJ 스프링 부트 Hellow world 프로젝트 만들기 IntelliJ ultimate 버젼을 이용하여 스프링부트 프로젝트를 생성하는 방법을 알아본다. 방법은 두가지가 있다 1. Intellij에서 스프링 부트 프로젝트를 모두 생성하는 방법 2. https://start.spring.io/ 에 접속해서 기본 프로젝트 생성후 zip파일로 받아서 IntelliJ에서 소스 import해서 생성하는 방법 여기서는 2번방법으로 생성을 해본다. 스프링부트 프로젝트 파일 만들기 https://start.spring.io/ 에 접속한다. Project : Gradle 선택 Language: Java 선택 Spring Boot 버젼: 2.3.2 선택 Project Metadata: 생성프로젝트에 맞게 입력 Packaging 방법: jar 선택 Java버젼: 마음에 드는 버젼.. 2021. 2. 16. Visual Studio Code를 이용한 리액트 hello world 프로젝트 생성 참조 : code.visualstudio.com/docs/nodejs/reactjs-tutorial React JavaScript Tutorial in Visual Studio Code React JavaScript tutorial showing IntelliSense, debugging, and code navigation support in the Visual Studio Code editor. code.visualstudio.com Node js 설치 nodejs.org/en/download/ Download | Node.js Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. nodejs.org visual studio.. 2021. 2. 15. AndroidViewModel has no zero argument constructor 안드로이드 버젼 문제로 보임 AndroidViewModel has no zero argument constructor stackoverflow.com/questions/61370134/androidviewmodel-has-no-zero-argument-constructor AndroidViewModel has no zero argument constructor I am trying to create an instance of my AndroidViewModel in MainActivity. When I do this I get the following error has no zero argument constructor Here is my RecipeViewModel package com.example... 2021. 2. 9. StarUML 클래스다이어그램에서 인터페이스 모양 바꾸는 방법 Staruml은 클래스 다이어그램에서 인터페이스를 추가하면 기본적으로 원모양으로 나온다. 보통 사각형을 쓰고 이름을 처럼 표현하는데 기본 모양이 원이어서 보기가 어색해서 사각형으로 바꾸는 방법을 찾아서 공유하려고 한다. 이미 아는 분도 있을수 있지만 인터넷을 찾아도 잘 못찾아서 겨우 찾은 방법을 공유한다. 메뉴> Format>Stereotype Display > Icon으로 선택되어 있는 것을 Label로 바꾸면 된다. 하지만 이렇게 매번 바꿀수는 없으니 기본적으로 Label 방식으로 표현하도록 기본설정을 다음과 같이 바꾼다. 메뉴> File > preference > UML > 선택후 Interface 항목에서 Stereotype Display 항목에서 기본값을 Label로 변경하면 된다. 참조: ww.. 2020. 11. 26. [react-redux] Error: You must pass a component to the function returned by connect. Instead received {} react-redux 에서 connect 함수 사용시 제대로 코딩하지 않아서 나는 오류 connect(mapStateToProps, mapDispatchToProps, OptionComponent) 이렇게 코딩을 하니 다음과 같은 오류발생 Error: You must pass a component to the function returned by connect. Instead received {} Component를 같이 넘겨줘서 그렇다. 다음과 같이 분리해서 넘겨줘야 한다. 결국은 오타실수!! 제대로 쓰는 방식은 다음과 같다. connect(mapStateToProps, mapDispatchToProps)(OptionComponent) 2020. 11. 10. Parameter 0 of method openEntityManagerInViewInterceptor Configuring org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration required a single bean, but 2 were found: Mark one of the beans as primary @Primary @Bean public EntityManagerFactory entityManagerFactory() { } https://stackoverflow.com/questions/41881759/spring-boot-jpa-multiple-datasource-error 불러오는 중입니다... 2020. 5. 6. 스프링부트시작시 하이버네이트에서 테이블이 이미 생성되어 있다고 발생하는 오류 스프링 부트 시작시 mariadb에 자동으로 테이블이 생성이 된다. 그리고 이전에 덤프받은 sql을 실행시키고 스프링 부트를 재시작을 하면 이미 생성된 테이블이라고 오류가 발생한다. 원인은 mariadb에 이미 소문자로 user 라는 테이블생 생성되어 있고 엔티티 클래스에서는 @table 어노테이션을 쓰지 않아서 User클래스명 그대로 'User' 테이블로 생성하려고 하고 이미 user라는 테이블을 생성되어 있어서 오류가발생하였다. 당연히 @table 어노테이션을 사용해서 오류를 해결함 2020. 5. 6. “npm install” error: Missing required argument #1 node, npm을 최신버젼으로 설치 출처: https://npm.community/t/npm-install-error-missing-required-argument-1/8113 2020. 3. 11. Gradle에서 Could not create service of type ScriptPluginFactory using BuildScopeServices.createScriptPluginFactory() [ 해결 ] 1. Gradle 데몬이 여러개 떠있는게 아닌지 확인. 2. 현재 실행 계정이 디렉토리 쓰기 권한이 있는지 확인. 출처: https://sarc.io/index.php/forum/tips/3038-gradle-could-not-create-service-of-type-scriptpluginfactory-using-buildscopeservices-createscriptpluginfactory 2020. 3. 11. 젠킨스 ERROR: Error fetching remote repo 'origin' 젠킨스에서 git에서 소스를 받다가 다음과 같은 오류가 발생 메세지에 timeout 10 second도 있으면 아래와 같이 처리함 타임아웃시간을 추가함 출처:https://bongman.tistory.com/51 2020. 3. 11. jenkins에서 gralde build 시 permission error 날경우 $chmod 755 gradlew 2020. 3. 11. docker: Got permission denied while trying to connect to the Docker daemon socket 오류발생 $ sudo usermod -a -G docker $USER $ sudo service docker restart 출처: http://www.kwangsiklee.com/2017/05/%ED%95%B4%EA%B2%B0%EB%B0%A9%EB%B2%95-solving-docker-permission-denied-while-trying-to-connect-to-the-docker-daemon-socket/ 2020. 3. 11. 이전 1 ··· 3 4 5 6 7 다음