coreApplicationTests, contextLoads()에서 계속 오류가 납니다. 옵션처리 4분 3초에 @Bean(name="memoryMemberRepository)까지 주석처리했는데 계속 오류가 나며 Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'memberServiceImpl' defined in file [C:\Users\Peter\Desktop\study\core\out\production\classes\hello\core\member\MemberServiceImpl.class]: Unsatisfied dependency expressed through constructor parameter 0: No qualifying bean of type 'hello.core.member.MemberRepository' available: expected single matching bean but found 2: memoryMemberRepository,memberRepository 이렇게 나옵니다
안녕하세요 범쌤! 🙂 프로젝트 리팩토링 중에 FOUC 문제가 있어서 다시 강의를 확인했는데, 범쌤은 각 css파일과 js파일에 코드를 작성했더라구요. 하지만 저는 해결이 안돼서 head태그에 아래와 같이 넣었더니 잘 되었습니다.. <head> <title>Main</title> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <style> .no-fouc { visibility: hidden; } </style> <script> document.documentElement.classList.add('no-fouc'); window.addEventListener('DOMContentLoaded', () => { document.documentElement.classList.remove('no-fouc'); gsap.from('body', { opacity: 0, autoAlpha: 0 }); }); </script> <script type="module" src="/src/pages/main.js"></script> </head> 제가 범쌤처럼 비슷하게 작성하니까 fouc해결이 안되더라구요ㅠ 혹시 아래 코드에서 문제점이 있는지 확인해 주실 수 있나요..? <head> <title>Main</title> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <script type="module" src="/src/pages/main.js"></script> </head> @use '@/styles/index' as *; @use '@/styles/components/popUp' as *; body { visibility: hidden; min-width: 20rem; background-color: $black; } import '@/pages/main.scss'; import gsap from 'gsap'; function init() { gsap.from('body', { autoAlpha: 0}); } window.addEventListener('DOMContentLoaded', function () { init(); }); 아마 코드에 문제가 없다면 아래와 같은 이유들로 fouc가 해결이 안될 수도 있나요? main.js 파일에서 실행되어야 하는 코드가 많아서? scss파일에서의 use나 js파일에서의 import가 많아서? 스타일 파일을 Link태그가 아닌 js에서 import로 불러와서..? 코드에도 문제가 없고 이런 이유들도 아니라면..해결이 안되는 이유를 모르겠습니다.. fouc가 심한 페이지들이 많아서 함수로 만들어놓고 import로 함수를 불러와 재사용하고 싶은데 잘 안됩니다ㅠㅠ
안녕하세요. 저는 비전공자 취업 준비생입니다. 이 강의를 통해 얻고자 하는 3가지는 다음과 같습니다. 강의를 통해 얻고 싶은 3가지 데이터 분석에 대해 알아가기 그동안 데이터 분석에 대해 다 알아갔다고 생각했지만, 현실은 그렇지 않았습니다. 넓은 분야와 다양한 직무로 인해 저는 데이터 분석의 길이 아닌가 라는 생각과 고민을 하며 살아왔습니다. 이번 강의로 데이터 분석이 어떤 용도로 사용되고 실무에 어떻게 활용되는지 알아가고 싶습니다. 나만의 프로젝트 구성하기 취업을 위해 데이터 분석의 역량과 문제를 도출하고 해결하는 역량을 면접관 분들에게 보여줄 수 없다고 생각했습니다. 왜냐하면 시도했던 프로젝트가 없기 때문입니다. 단순히 비전공자라서, 내가 접해보지 못했다는 이유로 더 알아가지 못한 자신이 부끄러워졌습니다. 그래서 이번 강의를 통해 프로젝트를 구성하고 문제를 도출하고 싶습니다. 실패를 하더라도 끈기있게 붙잡고 싶습니다. 취업의 문을 두드려 보기 제 이력서는 누구에게 보여줘도 빈 곳이 많아 부끄러운 이력서 입니다. 교내 학교 생활은 열심히했다 생각했지만 그만큼 취업에 신경쓰지 못해서 그런지 빈약하고 직무에 대해 내세울 것이 없다고 생각했습니다. 이번 기회로 실패를 하더라도 두드려 보겠습니다. 이를 통해 후회없이 자기소개서를 많이 고쳐봤고 도전해봤다는 용기를 얻고 싶습니다. 그걸 위해 나는 이렇게 노력할 것이다. 데이터 분석 스킬(Python, SQL)을 지속해서 키워나아갈 것입니다. 나만의 데이터 공부 공간을 만들어 지식을 확장해 나아가겠습니다. 한 가지가 아닌 다양한 생각으로 다양한 시도를 해보겠습니다. 수강한 뒤 나의 모습 좋아하는 주제로 데이터 프로젝트를 시도해 나아가겠습니다. 데이터의 흐름을 읽으려는 연습을 지속해 나아가겠습니다.
안녕하세요. 강의를 듣고 pyside로 데스크톱 어플리케이션을 만들고 있는 중에 있습니다. QGridLayout 안에 위젯들을 2열로 배치하였는데요, 이 위젯들이 위젯 아이템들 중 가장 너비가 넓은 것에 맞춰 같은 너비를 차지하면서도 위젯들이 윈도우 전체를 차지하지 않는(=커지거나 작아지지 않는) 방법이 있나요..? 생각보다 어려워서 며칠 째 끙끙대다 결국 질문남겨봅니다.
스레드 컨텍스트 스위칭이란 cpu의 레지스터에 있는 정보를 해당 스레드의 tcb에 저장하고 다른 스레드의 tcb의 정보를 가져오는거라고 생각합니다. 그럼 thread1 = threading.Trhead(target=foo).start() thread2 = threading.Trhead(target=foo).start() 에서 멀티코어환경에서 실행시킨다고 가정할 시에는 이 코드를 실행시켯을때 스레드 컨텍스트 스위칭이 일어나지 않겠죠 ??
let currentItem; function activate(elem){ // 활성화 : 문열기 elem.classList.add('door-open'); currentItem = elem; } function inactivate(elem){ // 비활성화 : 문닫기 elem.classList.remove('door-open'); } 이 부분에서요, let, const 변수는 범위가 {} 기준이라고 알고있습니다. 그런데, activate()에서 currentItem에 elem값을 넣어주면서 {} 범위가 끝났는데, inactivate()에서 currentItem의 값을 확인하고 실행한다는게 이해가 잘 안됩니다.
EquipmentData에서 보면 방어구와 무기가 부여하는 능력치의 종류가 다른데 이 둘을 상속해서 추가 분류하지 않고 그냥 해당 변수를 0으로 처리해서 하셨더라구요 이런 방식으로 다른 부분에서도 처리하신 것 같은데 상속을 받아서 불필요한 변수가 뜨게 하지 않는 것보다 이러한 방식이 더 처리하기 편하기 때문에 이렇게 구현하신걸까요?
EquipmentData에서 보면 방어구와 무기가 부여하는 능력치의 종류가 다른데 이 둘을 상속해서 추가 분류하지 않고 그냥 해당 변수를 0으로 처리해서 하셨더라구요 이런 방식으로 다른 부분에서도 처리하신 것 같은데 상속을 받아서 불필요한 변수가 뜨게 하지 않는 것보다 이러한 방식이 더 처리하기 편하기 때문에 이렇게 구현하신걸까요?
AWS EC2실습환경 설명과 관련하여, AWS management console을 통하여 인스턴스 지정하시는데, AWS에 유료가입하고 사용해야하나요? AWS에 대한 지식이 없어, 강의 수강 진행이 어렵습니다. 사전설명도 없고, 준비등에 대하여 쉬운 강좌에 너무 어려운 실습환경을 채택하고 있는거 같아요. AWS 광고 대행하는 것인가요?
플러터플로우에서 cloud_functions를 배포할 때 위와 같은 에러가 발생해서 파이어베이스의 Authentication의 설정에보면 차단함수가 열려있지 않습니다. 이것을 열고 함수를 설정하는 부분이 나오는데 아마도 변경된것같아요. 참고 링크 남겨드립니다. https://firebase.google.com/docs/auth/extend-with-blocking-functions?hl=ko&authuser=0&_gl=1*xve8tr*_ga*MTAyNjM2NTU2Ni4xNzI2ODIxNzcw*_ga_CW55HF8NVT*MTczNjczOTQ5Mi4yMDkuMS4xNzM2NzQxMTE4LjYwLjAuMA..&gen=2nd
[질문 템플릿] 1. 강의 내용과 관련된 질문인가요? 예 2. 인프런의 질문 게시판과 자주 하는 질문에 없는 내용인가요? 예 3. 질문 잘하기 메뉴얼을 읽어보셨나요? 예 [질문 내용] 안녕하세요, 메서드 강의를 듣는 중 메서드 선언부, 본문에 대해 궁금한 점이 생겨 여쭤보게 됩니다. 메서드 선언부와 본문에 등장하는 메서드 타입, 파라미터 타입, 리턴 타입이 모두 같아야 한다고 강의 도중 말씀하신 것 같아 형변환 원리가 적용되나 싶어 인텔리제이로 실행을 해보니 말씀 그대로 하나라도 다르면 적용이 안되었습니다. 형변환 원리가 적용되지 않는 것이 확실한지 싶어 구글링하여 찾아보았는데 형변환 원리가 일부 적용된다고 하여서 질문을 작성하게 되었습니다. 메서드 선언부(본문) - 호출부 간에는 자료형이 달라도 형변환 원리가 적용되는 것은 이해가 되었는데, 메서드 선언부와 본문에 등장하는 변수 타입은 형변환 원리가 적용되지 않는게 맞을까요 ? 좋은 강의 제공해주셔서 항상 감사드립니다 !!
학습하는 분들께 도움이 되고, 더 좋은 답변을 드릴 수 있도록 질문전에 다음을 꼭 확인해주세요. 1. 강의 내용과 관련된 질문을 남겨주세요. 2. 인프런의 질문 게시판과 자주 하는 질문(링크)을 먼저 확인해주세요. (자주 하는 질문 링크: https://bit.ly/3fX6ygx) 3. 질문 잘하기 메뉴얼(링크)을 먼저 읽어주세요. (질문 잘하기 메뉴얼 링크: https://bit.ly/2UfeqCG) 질문 시에는 위 내용은 삭제하고 다음 내용을 남겨주세요. ========================================= [질문 템플릿] 1. 강의 내용과 관련된 질문인가요? (예/아니오) 2. 인프런의 질문 게시판과 자주 하는 질문에 없는 내용인가요? (예/아니오) 3. 질문 잘하기 메뉴얼을 읽어보셨나요? (예/아니오) [질문 내용] 오버라이드 자체가 부모의 메서드를 재정의 하는 것 즉 오버라이드 하면 부모 메서드에 영향을 주는게 아닌데 final을 사용 하지 못하는 이유는 설계 의도가 맞지 않아서 사용하지 못하는게 맞을까요?
- 학습 관련 질문을 남겨주세요. 상세히 작성하면 더 좋아요! - 먼저 유사한 질문이 있었는지 검색해보세요. - 서로 예의를 지키며 존중하는 문화를 만들어가요. - 잠깐! 인프런 서비스 운영 관련 문의는 1:1 문의하기를 이용해주세요. 안녕하세요 선생님 ipod 밑에 부분이 filletedge가 안들어가고 잡히지도 않는데 아마 열린 서피스여서 그런것같아요 근데 어떤부분을 닫아야되는지를 모르겠습니다 ㅠㅠ
자바와 스프링 부트로 생애 최초 서버 만들기, 누구나 쉽게 개발부터 배포까지! [서버 개발 올인원 패키지]
1..2일차 영상 보면서... 환경을 만드는데.... 서버 구동이 안됩니다. 초초초보입니다....... A problem occurred configuring root project 'library-app'. > Could not resolve all files for configuration ':classpath'. > Could not resolve org.springframework.boot:spring-boot-gradle-plugin:3.0.1. Required by: project : > org.springframework.boot:org.springframework.boot.gradle.plugin:3.0.1 > No matching variant of org.springframework.boot:spring-boot-gradle-plugin:3.0.1 was found. The consumer was configured to find a runtime of a library compatible with Java 8, packaged as a jar, and its dependencies declared externally, as well as attribute 'org.gradle.plugin.api-version' with value '7.5' but: - Variant 'apiElements' capability org.springframework.boot:spring-boot-gradle-plugin:3.0.1 declares a library, packaged as a jar, and its dependencies declared externally: - Incompatible because this component declares an API of a component compatible with Java 17 and the consumer needed a runtime of a component compatible with Java 8 - Other compatible attribute: - Doesn't say anything about org.gradle.plugin.api-version (required '7.5') - Variant 'javadocElements' capability org.springframework.boot:spring-boot-gradle-plugin:3.0.1 declares a runtime of a component, and its dependencies declared externally: - Incompatible because this component declares documentation and the consumer needed a library - Other compatible attributes: - Doesn't say anything about its target Java version (required compatibility with Java 8) - Doesn't say anything about its elements (required them packaged as a jar) - Doesn't say anything about org.gradle.plugin.api-version (required '7.5') - Variant 'mavenOptionalApiElements' capability org.springframework.boot:spring-boot-gradle-plugin-maven-optional:3.0.1 declares a library, packaged as a jar, and its dependencies declared externally: - Incompatible because this component declares an API of a component compatible with Java 17 and the consumer needed a runtime of a component compatible with Java 8 - Other compatible attribute: - Doesn't say anything about org.gradle.plugin.api-version (required '7.5') - Variant 'mavenOptionalRuntimeElements' capability org.springframework.boot:spring-boot-gradle-plugin-maven-optional:3.0.1 declares a runtime of a library, packaged as a jar, and its dependencies declared externally: - Incompatible because this component declares a component compatible with Java 17 and the consumer needed a component compatible with Java 8 - Other compatible attribute: - Doesn't say anything about org.gradle.plugin.api-version (required '7.5') - Variant 'runtimeElements' capability org.springframework.boot:spring-boot-gradle-plugin:3.0.1 declares a runtime of a library, packaged as a jar, and its dependencies declared externally: - Incompatible because this component declares a component compatible with Java 17 and the consumer needed a component compatible with Java 8 - Other compatible attribute: - Doesn't say anything about org.gradle.plugin.api-version (required '7.5') - Variant 'sourcesElements' capability org.springframework.boot:spring-boot-gradle-plugin:3.0.1 declares a runtime of a component, and its dependencies declared externally: - Incompatible because this component declares documentation and the consumer needed a library - Other compatible attributes: - Doesn't say anything about its target Java version (required compatibility with Java 8) - Doesn't say anything about its elements (required them packaged as a jar) - Doesn't say anything about org.gradle.plugin.api-version (required '7.5')