묻고 답해요
164만명의 커뮤니티!! 함께 토론해봐요.
인프런 TOP Writers
-
미해결스프링 기반 REST API 개발
강의 내용에 대해 질문드리고 싶은게 있습니다.
안녕하세요. 영상 잘보고 있습니다. 다름이아니라 영상에서 /api/로 조회를 하셨고 이 조회를 통해서 다음 페이지로 갈수있는 링크 값을 얻으셨는데, 코드보니깐 /api/에 대한 컨트롤러를 추가한게 없더라구요. 여기서 생긴 링크 값은 어디서 생긴건지 알수 있을까요?
-
미해결공공데이터로 파이썬 데이터 분석 시작하기
No module named 'missingno'
anaconda prompt를 통해서 missingno를 설치했는데도 저런 메시지가 뜨면서 import가 안되는데 해결방법이 뭔가요.?
-
미해결더 자바, Java 8
강의 질문은아니고......
혹시 키보드 어떤거쓰시는건가요? ㅎ;;;
-
미해결파이썬 알고리즘 문제풀이 입문(코딩테스트 대비)
파일 읽기 관련 질문입니다.
강의를 따라서 했는데, 파일을 찾을 수 없다고 하네요. 어떻게 해결하나요?
-
미해결홍정모의 따라하며 배우는 C언어
미래기술연습문제패키지
미래기술연습문제패키지는 현재 제공이 중단되었나요?? 좋은강의 너무 감사드립니다.
-
미해결화이트해커가 되기 위한 8가지 웹 해킹 기술
VT-x is not available (VERR_VMX_NO_VMX).
window 10 home 버전을 쓰고 있고 강좌대로 설치는 다했는데 VT-x is not available (VERR_VMX_NO_VMX).라는 오류가 뜨네요...구글링으로 다 시도해봤는데 안됩니다ㅠㅠㅠㅠ진짜 일주일동안 시달리고 있는거 같네용ㅠㅠ
-
미해결it 취업을 위한 알고리즘 문제풀이 입문 (with C/C++) : 코딩테스트 대비
이상하네요
코드짜서 exe파일 채점파일에 복사 붙여넣기했는데 지정되지 않은 파일이라고 나옵니다 앞강의는 교수님이 한대로 해서 잘 됬는데 이거 똑같이 하니까 이러네요 아 참고로 코딩 구현 제대로 됬습니다 ㅠ
-
미해결스프링과 JPA 기반 웹 애플리케이션 개발
querydsl 빌드 에러 질문드립니다.
안녕하세요 기선님, 강의 잘 보고 있습니다. 우선, 강의는 maven으로 진행되었는데 gradle 관련 질문이라.. 죄송힙니다. 그래도 너무 답답하고 구글링을 몇시간 째 해도 안돼서 지푸라기라도 잡는 심정으로 질문을 남겨 봅니다. 저는 현재 Gradle 6버전대를 사용하고 있는데요, querydsl 의존성 설정을 추가하고 빌드하여 Q클래스들을 모두 생성했고, 이를 활용하여 Predicate 쿼리들을 강의대로 코딩하였습니다. 코딩 시 자동완성도 모두 문제없이 잘 되었습니다. 처음 의존성 추가 및 빌드와 어플리케이션 실행, 그리고 직접 테스트 해봤을 때, 모두 정상적으로 잘 되었습니다. 쿼리들도 정상적으로 동작합니다. 프로젝트 github 링크는 아래와 같고, https://github.com/taehee-kim-dev/portfolio2 build.gradle 파일은 아래와 같습니다. https://github.com/taehee-kim-dev/portfolio2/blob/master/build.gradle 이후 어플리케이션 실행은 잘 됩니다. 어플리케이션 재시작을 누르면 잘 실행 되는데, Ctrl + F9(빌드)만 다시하면 아래와 같은 에러가 납니다. 오전 3:42:54: Executing tasks ':classes :testClasses :querydslClasses'... Starting Gradle Daemon... Gradle Daemon started in 1 s 601 ms > Task :initQuerydslSourcesDir > Task :compileQuerydsl Note: Running JPAAnnotationProcessor Note: Serializing Entity types Note: Generating portfolio2.module.tag.QTag for [portfolio2.module.tag.Tag] Note: Generating portfolio2.module.account.QAccount for [portfolio2.module.account.Account] Note: Generating portfolio2.module.post.QPost for [portfolio2.module.post.Post] Note: Generating portfolio2.module.notification.QNotification for [portfolio2.module.notification.Notification] Note: Generating portfolio2.module.account.config.QPersistentLogins for [portfolio2.module.account.config.PersistentLogins] Note: Running JPAAnnotationProcessor Note: Running JPAAnnotationProcessor > Task :compileJava > Task :processResources > Task :classes > Task :compileTestJava > Task :processTestResources > Task :testClasses > Task :compileQuerydslJava FAILED C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\config\QPersistentLogins.java:3: error: package com.querydsl.core.types does not exist import static com.querydsl.core.types.PathMetadataFactory.*; ^ C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\config\QPersistentLogins.java:7: error: package com.querydsl.core.types does not exist import com.querydsl.core.types.PathMetadata; ^ C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\config\QPersistentLogins.java:8: error: package javax.annotation does not exist import javax.annotation.Generated; ^ C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\config\QPersistentLogins.java:9: error: package com.querydsl.core.types does not exist import com.querydsl.core.types.Path; ^ C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\config\QPersistentLogins.java:16: error: cannot find symbol public class QPersistentLogins extends EntityPathBase<PersistentLogins> { ^ symbol: class EntityPathBase C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\config\QPersistentLogins.java:15: error: cannot find symbol @Generated("com.querydsl.codegen.EntitySerializer") ^ symbol: class Generated C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\config\QPersistentLogins.java:16: error: cannot find symbol public class QPersistentLogins extends EntityPathBase<PersistentLogins> { ^ symbol: class PersistentLogins C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\config\QPersistentLogins.java:22: error: cannot find symbol public final DateTimePath<java.time.LocalDateTime> lastUsed = createDateTime("lastUsed", java.time.LocalDateTime.class); ^ symbol: class DateTimePath location: class QPersistentLogins C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\config\QPersistentLogins.java:24: error: cannot find symbol public final StringPath series = createString("series"); ^ symbol: class StringPath location: class QPersistentLogins C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\config\QPersistentLogins.java:26: error: cannot find symbol public final StringPath token = createString("token"); ^ symbol: class StringPath location: class QPersistentLogins C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\config\QPersistentLogins.java:28: error: cannot find symbol public final StringPath username = createString("username"); ^ symbol: class StringPath location: class QPersistentLogins C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\config\QPersistentLogins.java:34: error: cannot find symbol public QPersistentLogins(Path<? extends PersistentLogins> path) { ^ symbol: class Path location: class QPersistentLogins C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\config\QPersistentLogins.java:34: error: cannot find symbol public QPersistentLogins(Path<? extends PersistentLogins> path) { ^ symbol: class PersistentLogins location: class QPersistentLogins C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\config\QPersistentLogins.java:38: error: cannot find symbol public QPersistentLogins(PathMetadata metadata) { ^ symbol: class PathMetadata location: class QPersistentLogins C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\config\QPersistentLogins.java:5: error: package com.querydsl.core.types.dsl does not exist import com.querydsl.core.types.dsl.*; ^ C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:3: error: package com.querydsl.core.types does not exist import static com.querydsl.core.types.PathMetadataFactory.*; ^ C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:7: error: package com.querydsl.core.types does not exist import com.querydsl.core.types.PathMetadata; ^ C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:8: error: package javax.annotation does not exist import javax.annotation.Generated; ^ C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:9: error: package com.querydsl.core.types does not exist import com.querydsl.core.types.Path; ^ C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:10: error: package com.querydsl.core.types.dsl does not exist import com.querydsl.core.types.dsl.PathInits; ^ C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:17: error: cannot find symbol public class QAccount extends EntityPathBase<Account> { ^ symbol: class EntityPathBase C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:16: error: cannot find symbol @Generated("com.querydsl.codegen.EntitySerializer") ^ symbol: class Generated C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:17: error: cannot find symbol public class QAccount extends EntityPathBase<Account> { ^ symbol: class Account C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:23: error: cannot find symbol public final StringPath bio = createString("bio"); ^ symbol: class StringPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:25: error: cannot find symbol public final NumberPath<Integer> countOfSendingEmailVerificationEmail = createNumber("countOfSendingEmailVerificationEmail", Integer.class); ^ symbol: class NumberPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:27: error: cannot find symbol public final StringPath emailVerificationToken = createString("emailVerificationToken"); ^ symbol: class StringPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:29: error: cannot find symbol public final StringPath emailWaitingToBeVerified = createString("emailWaitingToBeVerified"); ^ symbol: class StringPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:31: error: cannot find symbol public final DateTimePath<java.time.LocalDateTime> firstCountOfSendingEmailVerificationEmailSetAt = createDateTime("firstCountOfSendingEmailVerificationEmailSetAt", java.time.LocalDateTime.class); ^ symbol: class DateTimePath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:33: error: cannot find symbol public final NumberPath<Long> id = createNumber("id", Long.class); ^ symbol: class NumberPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:35: error: cannot find symbol public final SetPath<portfolio2.module.tag.Tag, portfolio2.module.tag.QTag> interestTag = this.<portfolio2.module.tag.Tag, portfolio2.module.tag.QTag>createSet("interestTag", portfolio2.module.tag.Tag.class, portfolio2.module.tag.QTag.class, PathInits.DIRECT2); ^ symbol: class SetPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:35: error: cannot find symbol public final SetPath<portfolio2.module.tag.Tag, portfolio2.module.tag.QTag> interestTag = this.<portfolio2.module.tag.Tag, portfolio2.module.tag.QTag>createSet("interestTag", portfolio2.module.tag.Tag.class, portfolio2.module.tag.QTag.class, PathInits.DIRECT2); ^ symbol: class Tag location: package portfolio2.module.tag C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\tag\QTag.java:3: error: package com.querydsl.core.types does not exist import static com.querydsl.core.types.PathMetadataFactory.*; ^ C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\tag\QTag.java:7: error: package com.querydsl.core.types does not exist import com.querydsl.core.types.PathMetadata; ^ C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\tag\QTag.java:8: error: package javax.annotation does not exist import javax.annotation.Generated; ^ C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\tag\QTag.java:9: error: package com.querydsl.core.types does not exist import com.querydsl.core.types.Path; ^ C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\tag\QTag.java:16: error: cannot find symbol public class QTag extends EntityPathBase<Tag> { ^ symbol: class EntityPathBase C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\tag\QTag.java:15: error: cannot find symbol @Generated("com.querydsl.codegen.EntitySerializer") ^ symbol: class Generated C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\tag\QTag.java:16: error: cannot find symbol public class QTag extends EntityPathBase<Tag> { ^ symbol: class Tag C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:37: error: cannot find symbol public final BooleanPath isEmailFirstVerified = createBoolean("isEmailFirstVerified"); ^ symbol: class BooleanPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:39: error: cannot find symbol public final BooleanPath isEmailVerified = createBoolean("isEmailVerified"); ^ symbol: class BooleanPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:41: error: cannot find symbol public final DateTimePath<java.time.LocalDateTime> joinedAt = createDateTime("joinedAt", java.time.LocalDateTime.class); ^ symbol: class DateTimePath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:43: error: cannot find symbol public final StringPath location = createString("location"); ^ symbol: class StringPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:45: error: cannot find symbol public final StringPath nickname = createString("nickname"); ^ symbol: class StringPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:47: error: cannot find symbol public final StringPath nicknameBeforeUpdate = createString("nicknameBeforeUpdate"); ^ symbol: class StringPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:49: error: cannot find symbol public final BooleanPath notificationLikeOnMyPostByEmail = createBoolean("notificationLikeOnMyPostByEmail"); ^ symbol: class BooleanPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:51: error: cannot find symbol public final BooleanPath notificationLikeOnMyPostByWeb = createBoolean("notificationLikeOnMyPostByWeb"); ^ symbol: class BooleanPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:53: error: cannot find symbol public final BooleanPath notificationLikeOnMyReplyByEmail = createBoolean("notificationLikeOnMyReplyByEmail"); ^ symbol: class BooleanPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:55: error: cannot find symbol public final BooleanPath notificationLikeOnMyReplyByWeb = createBoolean("notificationLikeOnMyReplyByWeb"); ^ symbol: class BooleanPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:57: error: cannot find symbol public final BooleanPath notificationNewPostWithMyTagByEmail = createBoolean("notificationNewPostWithMyTagByEmail"); ^ symbol: class BooleanPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:59: error: cannot find symbol public final BooleanPath notificationNewPostWithMyTagByWeb = createBoolean("notificationNewPostWithMyTagByWeb"); ^ symbol: class BooleanPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:61: error: cannot find symbol public final BooleanPath notificationReplyOnMyPostByEmail = createBoolean("notificationReplyOnMyPostByEmail"); ^ symbol: class BooleanPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:63: error: cannot find symbol public final BooleanPath notificationReplyOnMyPostByWeb = createBoolean("notificationReplyOnMyPostByWeb"); ^ symbol: class BooleanPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:65: error: cannot find symbol public final BooleanPath notificationReplyOnMyReplyByEmail = createBoolean("notificationReplyOnMyReplyByEmail"); ^ symbol: class BooleanPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:67: error: cannot find symbol public final BooleanPath notificationReplyOnMyReplyByWeb = createBoolean("notificationReplyOnMyReplyByWeb"); ^ symbol: class BooleanPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:69: error: cannot find symbol public final StringPath occupation = createString("occupation"); ^ symbol: class StringPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:71: error: cannot find symbol public final StringPath password = createString("password"); ^ symbol: class StringPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:73: error: cannot find symbol public final StringPath profileImage = createString("profileImage"); ^ symbol: class StringPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:75: error: cannot find symbol public final StringPath showPasswordUpdatePageToken = createString("showPasswordUpdatePageToken"); ^ symbol: class StringPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:77: error: cannot find symbol public final StringPath userId = createString("userId"); ^ symbol: class StringPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:79: error: cannot find symbol public final StringPath verifiedEmail = createString("verifiedEmail"); ^ symbol: class StringPath location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:85: error: cannot find symbol public QAccount(Path<? extends Account> path) { ^ symbol: class Path location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:85: error: cannot find symbol public QAccount(Path<? extends Account> path) { ^ symbol: class Account location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:89: error: cannot find symbol public QAccount(PathMetadata metadata) { ^ symbol: class PathMetadata location: class QAccount C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\tag\QTag.java:22: error: cannot find symbol public final NumberPath<Long> id = createNumber("id", Long.class); ^ symbol: class NumberPath location: class QTag C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\tag\QTag.java:24: error: cannot find symbol public final StringPath title = createString("title"); ^ symbol: class StringPath location: class QTag C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\tag\QTag.java:30: error: cannot find symbol public QTag(Path<? extends Tag> path) { ^ symbol: class Path location: class QTag C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\tag\QTag.java:30: error: cannot find symbol public QTag(Path<? extends Tag> path) { ^ symbol: class Tag location: class QTag C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\tag\QTag.java:34: error: cannot find symbol public QTag(PathMetadata metadata) { ^ symbol: class PathMetadata location: class QTag C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\account\QAccount.java:5: error: package com.querydsl.core.types.dsl does not exist import com.querydsl.core.types.dsl.*; ^ C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\tag\QTag.java:5: error: package com.querydsl.core.types.dsl does not exist import com.querydsl.core.types.dsl.*; ^ C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:3: error: package com.querydsl.core.types does not exist import static com.querydsl.core.types.PathMetadataFactory.*; ^ C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:7: error: package com.querydsl.core.types does not exist import com.querydsl.core.types.PathMetadata; ^ C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:8: error: package javax.annotation does not exist import javax.annotation.Generated; ^ C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:9: error: package com.querydsl.core.types does not exist import com.querydsl.core.types.Path; ^ C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:10: error: package com.querydsl.core.types.dsl does not exist import com.querydsl.core.types.dsl.PathInits; ^ C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:17: error: cannot find symbol public class QNotification extends EntityPathBase<Notification> { ^ symbol: class EntityPathBase C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:16: error: cannot find symbol @Generated("com.querydsl.codegen.EntitySerializer") ^ symbol: class Generated C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:17: error: cannot find symbol public class QNotification extends EntityPathBase<Notification> { ^ symbol: class Notification C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:21: error: cannot find symbol private static final PathInits INITS = PathInits.DIRECT2; ^ symbol: class PathInits location: class QNotification C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:27: error: cannot find symbol public final SetPath<portfolio2.module.tag.Tag, portfolio2.module.tag.QTag> commonTag = this.<portfolio2.module.tag.Tag, portfolio2.module.tag.QTag>createSet("commonTag", portfolio2.module.tag.Tag.class, portfolio2.module.tag.QTag.class, PathInits.DIRECT2); ^ symbol: class SetPath location: class QNotification C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:27: error: cannot find symbol public final SetPath<portfolio2.module.tag.Tag, portfolio2.module.tag.QTag> commonTag = this.<portfolio2.module.tag.Tag, portfolio2.module.tag.QTag>createSet("commonTag", portfolio2.module.tag.Tag.class, portfolio2.module.tag.QTag.class, PathInits.DIRECT2); ^ symbol: class Tag location: package portfolio2.module.tag C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:29: error: cannot find symbol public final DateTimePath<java.time.LocalDateTime> createdDateTime = createDateTime("createdDateTime", java.time.LocalDateTime.class); ^ symbol: class DateTimePath location: class QNotification C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:31: error: cannot find symbol public final NumberPath<Long> id = createNumber("id", Long.class); ^ symbol: class NumberPath location: class QNotification C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:33: error: cannot find symbol public final BooleanPath isChecked = createBoolean("isChecked"); ^ symbol: class BooleanPath location: class QNotification C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:35: error: cannot find symbol public final StringPath link = createString("link"); ^ symbol: class StringPath location: class QNotification C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:37: error: cannot find symbol public final EnumPath<NotificationType> notificationType = createEnum("notificationType", NotificationType.class); ^ symbol: class EnumPath location: class QNotification C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:37: error: cannot find symbol public final EnumPath<NotificationType> notificationType = createEnum("notificationType", NotificationType.class); ^ symbol: class NotificationType location: class QNotification C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:39: error: cannot find symbol public final StringPath title = createString("title"); ^ symbol: class StringPath location: class QNotification C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:45: error: cannot find symbol public QNotification(Path<? extends Notification> path) { ^ symbol: class Path location: class QNotification C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:45: error: cannot find symbol public QNotification(Path<? extends Notification> path) { ^ symbol: class Notification location: class QNotification C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:49: error: cannot find symbol public QNotification(PathMetadata metadata) { ^ symbol: class PathMetadata location: class QNotification C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:53: error: cannot find symbol public QNotification(PathMetadata metadata, PathInits inits) { ^ symbol: class PathMetadata location: class QNotification C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:53: error: cannot find symbol public QNotification(PathMetadata metadata, PathInits inits) { ^ symbol: class PathInits location: class QNotification C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:57: error: cannot find symbol public QNotification(Class<? extends Notification> type, PathMetadata metadata, PathInits inits) { ^ symbol: class Notification location: class QNotification C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:57: error: cannot find symbol public QNotification(Class<? extends Notification> type, PathMetadata metadata, PathInits inits) { ^ symbol: class PathMetadata location: class QNotification C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:57: error: cannot find symbol public QNotification(Class<? extends Notification> type, PathMetadata metadata, PathInits inits) { ^ symbol: class PathInits location: class QNotification C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\notification\QNotification.java:5: error: package com.querydsl.core.types.dsl does not exist import com.querydsl.core.types.dsl.*; ^ C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\post\QPost.java:3: error: package com.querydsl.core.types does not exist import static com.querydsl.core.types.PathMetadataFactory.*; ^ C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\post\QPost.java:7: error: package com.querydsl.core.types does not exist import com.querydsl.core.types.PathMetadata; ^ C:\Users\shine\OneDrive\���� ȭ��\Programming\portfolio2\build\generated\querydsl\portfolio2\module\post\QPost.java:8: error: package javax.annotation does not exist import javax.annotation.Generated; ^ 100 errors FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':compileQuerydslJava'. > Compilation failed; see the compiler error output for details. * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights. * Get more help at https://help.gradle.org BUILD FAILED in 20s Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0. Use '--warning-mode all' to show the individual deprecation warnings. See https://docs.gradle.org/6.3/userguide/command_line_interface.html#sec:command_line_warnings 7 actionable tasks: 7 executed 오전 3:43:16: Tasks execution finished ':classes :testClasses :querydslClasses'. 구글링 결과, lombok때문이라는 말도 있고 해서 다 적용해보고, gradle 버전도 5버전대, 4버전대로 다운그레이드 해보고 다 해봤습니다. 우선, 김영한님의 querydsl 강의의 질문글 중에도 저와 같은 증상을 겪는 분들이 계시더라구요. 아래가 해당 질문글의 링크입니다. https://www.inflearn.com/questions/23530 영한님이 남겨주신 답변대로 해봤지만, 결과는 같았습니다. 또한, gradle 버전을 5버전대, 4버전대로 다운그레이드하여 아래의 포스팅대로 해봐도 결과는 같았습니다. https://jojoldu.tistory.com/372 그런데 이상한게, 어플리케이션 실행은 왜 계속 잘 될까요? 왜 이후 빌드만 실행하면 저런 에러가 날까요? 이것때문에 devtools live reload를 못쓰고 있네요ㅠ 모른다고 하셔도 괜찮습니다만.. 너무 답답해서 질문 남겨 봅니다..ㅠㅠ 감사합니다!
-
미해결파이썬 무료 강의 (활용편1) - 추억의 오락실 게임 만들기 (3시간)
공의 둥근 모양에 맞는 충돌처리 방법
안녕하세요! 완강한 수강생입니다. 너무나 좋은 강의 감사하게도 잘 들었습니다. 한가지 질문이 있는데요! get_rect()으로 size를 정의하고 충돌처리도 colliderect()으로 하다보니 저렇게 공의 이미지를 제가 포토샵으로 둥글게 누끼를 따도 가상의 사각형 모양에 닿으면 game over가 뜨는데요 공의 둥근 이미지에 맞게 정말 딱 공에 닿으면 충돌처리를 할 수 있는 방법이 뭐가 있나요?
-
미해결따라하며 배우는 노드, 리액트 시리즈 - 쇼핑몰 사이트 만들기[전체 리뉴얼]
multer 사용한 이미지 업로드 관련 질문입니다
업로드 페이지의 이미지 업로드 하는 부분에서 테스트시 아래와 같은 오류가 발생합니다 [0] [Error: ENOENT: no such file or directory, open 'uploads/1595003650637_IMG_6340.jpg'] { [0] errno: -2, [0] code: 'ENOENT', [0] syscall: 'open', [0] path: 'uploads/1595003650637_IMG_6340.jpg', [0] storageErrors: [] [0] } 강의의 내용처럼 uploads라는 폴더도 만들어주고 테스트를 하는데 같은 오류만 계속 발생하네요 ㅜㅜ destination: (req, file, cb) => { // 파일이 어디에 저장이 되는지 cb(null, 'uploads/') }, 코드는 강의와 똑같이 작성했는데 어느부분이 문제인지 잘 모르겠습니다 ㅜ
-
미해결React로 NodeBird SNS 만들기
const 는 재할당이 안되는거 아닌가요?
초기값을 false 할당하고 나서는 true 변경되면 안되는거 아닌가요???
-
미해결Vue.js 끝장내기 - 실무에 필요한 모든 것
.env 와 .env.development
안녕하세요! 로컬에서 npm run serve 를 했을 때, .env.development 보다 .env가 우선 순위를 가지게 됩니다. .env 파일을 지우고 .env.development 파일만 남겼을 때, 잘 작동한하는 것으로 보아, .env.development 파일에는 문제가 없는 것 같습니다. 혹시 어느 부분이 잘못된 것일까요ㅠㅠ
-
미해결레트로의 유니티 C# 게임 프로그래밍 에센스
if (CharacterController.isGrounded) currentVelocityY = 0f;
static이 아닌 필드, 메서드 또는 속성 CharacterController.isGrounded 에 개체참조가 필요합니다. 라고 오류가 납니다 ㅠㅠ
-
미해결코로나맵 개발자와 함께하는 지도서비스 만들기 1
네이버 지도 api는 무료인가요?
네이버 지도 api는 무료인가요? 추가로 지불할 비용은 없는거죠?
-
미해결MQTT 사물인터넷 통신 프로젝트 (Arduino, MQTT, Node.js, mongoDB, Android)
include < >와 " " 은 같은 의미인가요
라이브러리를 불러올 때 대부분 <> 를 사용하던데 <ESP8266WiFi.h> 다르게 "PubSubClient" 로 작성하셨는데요. 같은 의미인지 문의드립니다.
-
해결됨파이썬 무료 강의 (기본편) - 6시간 뒤면 나도 개발자
print 입력시에 줄 바꿈
선생님께서 출력하고 싶은 문자를 print("") 이렇게 해서 입력하셨는데, 줄을 바꿀때마다 print를 계속 입력하는게 조금 힘들어서요.print()를 한번만 쓰고 줄을 바꾸는 방법이 있나요? 그러니까 예를 들어서 print("우리집 강아지 이름은 해피입니다") print("해피의 취미는 낮잠자기 입니다") print("나는 해피를 무척 사랑합니다.") 이거를 print("우리집 강아지 이름은 해피입니다 해피의 취미는 낮잠자기 입니다 나는 해피를 무척 사랑합니다") 이렇게 한번만 print입력후에 줄을 바꿔봤는데 안되더라고요. 어떤 방법이 있을까요?
-
미해결자바 ORM 표준 JPA 프로그래밍 - 기본편
강의와 관련은 없지만... 강사님이 계속 사용하시는기능이 궁금합니다.
맥을 사용하고있습니다. 오른쪽에 코드를 작성하고 왼쪽에 return 값이 자동으로 생성되시는데 이 기능은 무엇인가요??? (혹 커맨드라면 커맨드를 알 수 있을까요?)
-
미해결따라하며 배우는 노드, 리액트 시리즈 - 기본 강의
npm ERR! Maximum call stack size exceeded
cd client에서 npm install react-router-dom --save 이걸 실행했더니 npm ERR! Maximum call stack size exceeded npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\smini\AppData\Roaming\npm-cache\_logs\2020-07-17T14_11_02_443Z-debug.log 요런 에러가 나왔습니다. 검색해보면 재귀함수에서 함수잘못썼을 때 나오던데 왜인지 모르겠어요 ㅠㅠ
-
해결됨실전! 스프링 부트와 JPA 활용2 - API 개발과 성능 최적화
findOrders() 질문 있습니다.
안녕하세요 영한님 findOrders() 메서드 질문 있습니다!! 앞에서부터 쭉 내용을 봤더니 머릿속이 굉장히 꼬인 것 같네요 ㅎㅎ; 앞서 V3.1 에서 페이징 한계 극복에 사용한 메서드 findAllWithMemberDelivery 는 to One 을 페이징에 영향을 주지않기 때문에 페치조인을 하였습니다. DTO에 직접 적용하는 V4의 경우 findOrders 메서드를 사용하였는데 이 때에도 to One 을 먼저 조인을 시켰습니다. 여기서 궁금한 점이, 이 때에는 왜 fetch 조인을 사용하지 않은 것인지 궁금합니다. 그리고 어째서 lazy 인데도 불구하고 1건으로 조회가 되는지 궁금합니다. Select o from Order o 만 하면 lazy이기 때문에 Order만 조회가 되지만 위의 경우는 join 을 해주었기 때문에 delivery와 member가 같이 조회가 되는 건가요? lazy인데 어떻게죠? 만약 그렇다면, findAllWithMemberDelivery() 메서드에서는 굳이 fetch를 왜 시켜준건지도 아리송합니다. 그냥 join해도 toOne 이니깐 row수를 증가시키지않고 딱 되지 않나요 ?? 이해했던게 막 꼬이네요 ㅜㅜ
-
미해결[리뉴얼] React로 NodeBird SNS 만들기
SSR이 한번만 작동합니다.
SSR이 처음 한번만 잘 작동합니다. 로그인 하고 새로고침을 해도 한번까지는 정상적으로 서버에서 request-> success까지 마치는데 이후에는 이번 강의에서 rootReducer의 HYDRATE부분을 수정하기 전과 같이 request단계까지만 진행되고 success는 완료되지가 않습니다. 그래서 새로고침을 하면 빈 로그인창만 나와있고 mainPost들도 비어있습니다. 쿠키를 지우고 다시해봐도 같은 결과가 나오고, 프론트 서버를 다시 시작하면 또 한번까지는 정상적으로 되고 이후는 동일합니다. 로그인을 하지 않고 새로고침을 해도 결과는 같습니다. 그런데 또 웃긴건, 몇 분 후에 계속 새로고침을 하다 보면 한번은 또 정상적으로 동작을 하고 이후에는 안 되는 경우가 나타납니다. 일단 저는 reduxjs-toolkit을 사용하고 있어서 rootReducer 부분이 조금 다르긴 한데, 이것때문에 HYDRATE 부분에서 뭔가 잘못 동작을 하고 있는건지 아니면 다른데 문제가 있는건지 모르겠네요.