반응형

전체 글

· Spring/error
Access to XMLHttpRequest at 'http://localhost:8888' from origin 'http://localhost:9091' has been blocked by CORS policy: Response to prefligt request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. 위와 같은 에러 발생시 두가지 설정 방법과 서버에서 설정 시 모든 도메인 허용 방법 1. Chrome 브라우저 속성 args 추가하는 방법 - chrome 실행파일 오른쪽 마우스 클릭 > 속성 클릭 - 바로가기 > 대상(T) 마지막에 --ar..
스트림 특징 스트림이 제공하는 대부분의 요소 처리 메소드는 함수적 인터페이스 매개타입을 가진다. 매개값으로 람다식 또는 메소드 참조를 대입할 수 있다. 함수적 인터페이스란 - 메소드가 하나인 인터페이스 람다식은 결국 메소드를 정의하여 메소드 주소를 매개변수로 던지는 것이 아니라 메소드가 하나인 함수적 인터페이스를 구현한 객체를 매개변수로 넘기는 것이다. - 예제 List list = Arrays.asList( new Student("홍길동", 90), new Student("김자바", 80) ); Stream stream = list.stream(); stream.forEach(s -> { String name = s.getName(); int score = s.getScore(); System.out...
- 자바 8 이전 코드 List list = Arrays.asList("홍길동", "신용권", "김자바"); Iterator iterator = list.iterator(); while(iterator.hasNext()) { String name = iterator.next(); System.out.println(name); } - 자바 8 이후 코드 List list = Arrays.asList("홍길동", "신용권", "김자바"); Stream stream = list.stream(); stream.forEach( name -> System.out.println(name) ); 출처 : www.youtube.com/watch?v=2D9NRBIKKCc
· Spring/error
*************************** APPLICATION FAILED TO START *************************** Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to determine suitable jdbc url Action: Consider the following: If you want an embedded database (H2, HSQL or Derby), please put it on the classpath. If you have database s..
반응형
MOMOBOB
도움 안되는 개발 블로그