묻고 답해요
164만명의 커뮤니티!! 함께 토론해봐요.
인프런 TOP Writers
-
미해결프로그래밍 시작하기 : 파이썬 입문 (Inflearn Original)
print함수 질문
print('%5s'%('python study')) 이렇게 해도 어차피 모든 문자열이 출력된다면 '%5s' 에서 '5'가 무슨 의미가 있죠?
-
미해결React로 NodeBird SNS 만들기
2:55 쯤에 질문있습니다.
req.login(user, async(loginErr) => {}) ....... 이런식으로 나와있는데 async를 async(user, loginErr) 이렇게 안하고 loginErr에만 하신 이유가 있나요??
-
해결됨3DS MAX 입문강좌 (입문부터 자동차 예제까지)
단축키 이미지 파일이 아닌 단축키 저장 파일 올려주시면 안되나요...
영상보면 단축키 세팅 된 것을 저장하시던데, 그 저장된 파일을 올려주시면 저 같은 초보수강생들이 불러와서 편하게 세팅 할 수 있지 않을까 싶어서요..
-
미해결웹 게임을 만들며 배우는 자바스크립트
함수가 끝나면 변수가 날아가버리는 현상
강사님께서 함수가 종료되면 그 안에 있던 변수들이 모두 날아가버린다고 하셨습니다. 그래서 console.log(끝시간-시작시간) 값이 NaN으로 출력된다고 하셨는데요. 궁금한 것이 function 이 작동하는 것 자체가 안에 있는 코드들을 실행하는 것이라면 addEventListener의 fuction 안에 있는 console.log('반응속도', 끝시간-시작시간, 'ms'); 부분은 function 이 종료되어 변수 '시작시간'과 '끝시간' 이 소멸되기 전에 출력을 하는 것이므로 NaN이 나오면 안 되는 것 아닌가요?
-
미해결React로 NodeBird SNS 만들기
회원가입할 때 질문있습니다.
const filteredUser = Object.assign({}, newUser.toJSON()); delete filteredUser.password; return res.status(200).json(filteredUser); 회원가입할 때도 이렇게 비밀번호는 안보내는게 좋나요???
-
미해결예제로 배우는 스프링 입문 (개정판)
각 Rest API에 맞는 함수를 맵핑할 때 맵핑된 함수의 인자가 다른데
GetMapping이나 PostMapping을 통해 함수들을 맵핑하고 함수들을 정의할 때, 그 인자들을 설정하는 규칙같은 것이 있나요?
-
미해결[개정판] 파이썬 머신러닝 완벽 가이드
맥 사용자는 어떻게 해야하는지 궁금합니다.
안녕하세요. 강의를 듣는 와중에 윈도우만 사용해야한다는 말을 들어서;;; 저는 현재 맥을 사용하고 있어서 맥용 비주얼스튜디오를 설치하였는데 말씀하신 빌드도구를 찾을 수 없어 질문 남깁니다.
-
미해결홍정모의 따라하며 배우는 C언어
3.11 질문입니다.
강의 내용중 원하는 실행 결과에 영향은 없지만 printf("%u\n", sizeof(float)); printf("%u\n", sizeof(double)); printf("%u\n", sizeof(long double)); 이 부분에 대해서 warning C4477: 'printf' : format string '%u' requires an argument of type 'unsigned int', but variadic argument 1 has type 'size_t' 이런 warning 이 뜨는데 왜 뜨는지 알 수 있을까요? sizeof함수의 결과가 너무 작은 메모리값만을 차지 하므로 더 작은? 형식지정자를 사용하라는 뜻인가요? but variadic argument 1 has type 'size_t'의 의미를 모르겠습니다. ㅠ +3.12 <float.h>헤더에서 define에서 DBL_TRUE_MIN 와 DBL_MIN의 차이가 궁금합니다. 주석에는 둘다 // min positive value 되어 있습니다.
-
미해결iOS12 앱 개발 퍼펙트 가이드
스토리보드에서 Button에 vertical in container를 해주기만하면 시뮬레이터에 안뜨네요
레이블은 시뮬레이터에 잘 보이는데, 버튼만 위치를 조정해주면(vetically, horizontally) 시뮬레이터가 스토리보드 뷰에서와 다른 위치에 표시가 되거나, 아예 시뮬레이터에 버튼이 보이지 않네요 뭐가 문제인지 도통 모르겠어요.
-
미해결홍정모의 따라하며 배우는 C언어
파일 입출력에 관한 질문입니다
파일 입출력 강의를 듣고 다른궁금증이 생겼습니다. 1. 다른디렉토리에 만들어져있는 파일을 불러올수있는지 궁금합니다 2. 콘솔창에 출력을 보고싶은데, 다른 디렉토리에 있는 두개의 파일이 있다했을때 첫번째 파일을 확인한후 콘솔창을 유지시킨채 다른 파일을 불러서 볼수있는지 궁금합니다. 3. 동적할당의 heap영역을 쓰고자할때 내가 생각하는 메모리보다 클경우 동적할당을 써야하는지 아니면 stack 영역을 써야하는지 궁금합니다.
-
미해결노션(notion) 완벽 활용법
workspace와 private 차이는 무엇인가요
workspace와 private 차이는 무엇인가요
-
미해결홍정모의 따라하며 배우는 C언어
[11:02] 음성 , printf 아니고 scanf로 바뀌어야 할 거 같습니다.
안녕하세요? printf 아니고 scanf로 바뀌어야 할 거 같습니다. 물론 문맥상 알 수 있습니다 감사합니다.
-
해결됨만들면서 배우는 HTML/CSS
따라하는건 잘되는데 서버에 올려서 테스트가 안될때의 경우 문의
말씀하신 에디터로 따라하면서 많이 배웁니다 그래서 제 홈페이지를 만들어 볼려고 ftp로 올려보니 슬라이딩이 안되더라구요 그래서 BX dlider에 가서 파일을 다운받았는데 어떻게 연결할지 모르겠어요 이 부분을 알수는 배울수는 없을까요요요보리아빠 드림
-
미해결해외취업 ASP.NET Core 웹개발 기본 강좌
[Authorize] 헤더
HomeController 안에 있는 Index() 위에 [Authorize] 때문에 리다이렉트가 안됩니다. 물론 이거 지우면 리다이렉트 됩니다. 그런데 로그인을 한거니까 당연히 Authorize 된거 아닌가요?
-
해결됨아이폰 앱 개발 입문 2편
아이폰 11프로 맥스 디바이스에서 런치스크린 오류
아이폰 8 등등 다른 디바이스에서는 런치스크린이 잘 나오는데 11프로 맥스에서는 왜 안나오는걸까요 ㅜㅜ
-
미해결스프링 웹 MVC
안녕하세요 기선님!
항상 강의 잘 보고 있습니다. 감사합니다~! 다름이 아니라 web.xml을 지우고 WebApplicationInitializer 인터페이스 구현했는데요! pom.xml에 빨간불이 떠서 제대로 작동하지가 않네요ㅠ 예전에 한 번 공부했을 때 무슨 설정을 추가해야되었던거 같던데 혹시 pom.xml에 xml파일이 없을때에도 실행이 되도록 설정을 추가해야 될까요?
-
해결됨레트로의 유니티 C# 게임 프로그래밍 에센스
Move함수 만들 때 질문있습니다.
moveInput.magnitude를 쓰는 이유가 게임패드를 쓸 때는 1보다 작은 값이 들어올 수가 있기 때문이라고 하셨는데 저걸 쓰면 왜 값이 1이 되는지 모르겠네요. magnitude는 벡터의 크기(길이)를 반환한다고 알고 있는데 게임패드에서 쓴다고 하더라도 예를들어서 moveInput값에 (0.2 , 0)이라는 값이 들어온다면 moveInput.magnitude는 0.2²+0²=0.04가 되어서 1이 안되는거 아닌가요?
-
미해결인터랙티브 웹 개발 제대로 시작하기
동작실행
(function() { const houseElem = document.querySelector(".house"); let maxScrollValue = document.body.offsetHeight - window.innerHeight; window.addEventListener("scroll", function() { const zMove = (pageYOffset / maxScrollValue) * 1000 - 490; houseElem.style.transform = "translateZ(' + zMove + 'vw)"; }); })(); 이렇게 실행시켰는데 페이지가 동작을안하고 콘솔창에서도 ㄴnavigated to 만 뜨면 무슨문제가생긴건가요??
-
미해결실전! 스프링 부트와 JPA 활용2 - API 개발과 성능 최적화
querydsl 설정관련 질문드립니다.
현재 build.gradle에서 querydsl 환경설정을 하고 있는데 에러가 있어서 질문드립니다. 아래와 같이 build.gradle 작성했고 reimport 후 compileQuerydsl로 Q클래스들을 생성하였습니다. 하지만 빌드시 에러가 발생하는데 관련 자료를 찾는데 어려움이 있습니다..ㅜ (err msg 아래 첨부하였습니다.) 어떻게 해야할까요..? 개발환경> spring boot 2.3 gradle 6.0.1 build.gradle=================================================================== /*buildscript { repositories { maven { url "https://plugins.gradle.org/m2/" } } dependencies { classpath "gradle.plugin.com.ewerk.gradle.plugins:querydsl-plugin:1.0.10" }}*/plugins { id 'org.springframework.boot' version '2.2.3.RELEASE' id 'io.spring.dependency-management' version '1.0.8.RELEASE' id 'java' id "com.ewerk.gradle.plugins.querydsl" version "1.0.10" id 'idea'}//apply plugin: "com.ewerk.gradle.plugins.querydsl"group = 'com.gabia.project'version = '0.0.1-SNAPSHOT'sourceCompatibility = '1.8'configurations { compileOnly { extendsFrom annotationProcessor }}repositories { mavenCentral()}dependencies { implementation 'org.springframework.boot:spring-boot-starter-data-jdbc' implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'org.springframework.boot:spring-boot-starter-web' compileOnly 'org.projectlombok:lombok' runtimeOnly 'mysql:mysql-connector-java' testRuntimeOnly 'com.h2database:h2' annotationProcessor 'org.projectlombok:lombok' implementation 'com.github.gavlyukovskiy:p6spy-spring-boot-starter:1.5.7' testImplementation('org.springframework.boot:spring-boot-starter-test') { exclude group: 'org.junit.vintage', module: 'junit-vintage-engine' } compile("com.querydsl:querydsl-jpa") // querydsl compile("com.querydsl:querydsl-apt") // querydsl}test { useJUnitPlatform()}def querydslSrcDir = 'src/main/generated'querydsl { library = "com.querydsl:querydsl-apt" jpa = true querydslSourcesDir = querydslSrcDir}compileQuerydsl{ options.annotationProcessorPath = configurations.querydsl}configurations { querydsl.extendsFrom compileClasspath}sourceSets { main { java { srcDirs = ['src/main/java', querydslSrcDir] } }}/*//querydsl 추가def querydslDir = 'src/main/generated'querydsl { library = "com.querydsl:querydsl-apt" jpa = true querydslSourcesDir = querydslDir}sourceSets { main { java { srcDirs = ['src/main/java', querydslDir] } }}compileQuerydsl{ options.annotationProcessorPath = configurations.querydsl}configurations { querydsl.extendsFrom compileClasspath}*/==================================================================err msg>>>> Task :compileQuerydslJava FAILED C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QMember.java:3: error: package com.querydsl.core.types does not exist import static com.querydsl.core.types.PathMetadataFactory.*; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QMember.java:7: error: package com.querydsl.core.types does not exist import com.querydsl.core.types.PathMetadata; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QMember.java:8: error: package javax.annotation does not exist import javax.annotation.Generated; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QMember.java:9: error: package com.querydsl.core.types does not exist import com.querydsl.core.types.Path; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QMember.java:10: error: package com.querydsl.core.types.dsl does not exist import com.querydsl.core.types.dsl.PathInits; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QMember.java:17: error: cannot find symbol public class QMember extends EntityPathBase<Member> { ^ symbol: class EntityPathBase C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QMember.java:16: error: cannot find symbol @Generated("com.querydsl.codegen.EntitySerializer") ^ symbol: class Generated C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QMember.java:17: error: cannot find symbol public class QMember extends EntityPathBase<Member> { ^ symbol: class Member C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QMember.java:23: error: cannot find symbol public final StringPath department = createString("department"); ^ symbol: class StringPath location: class QMember C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QMember.java:25: error: cannot find symbol public final StringPath id = createString("id"); ^ symbol: class StringPath location: class QMember C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QMember.java:27: error: cannot find symbol public final StringPath name = createString("name"); ^ symbol: class StringPath location: class QMember C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QMember.java:29: error: cannot find symbol public final ListPath<RecruitMember, QRecruitMember> recruitMembers = this.<RecruitMember, QRecruitMember>createList("recruitMembers", RecruitMember.class, QRecruitMember.class, PathInits.DIRECT2); ^ symbol: class ListPath location: class QMember C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QMember.java:29: error: cannot find symbol public final ListPath<RecruitMember, QRecruitMember> recruitMembers = this.<RecruitMember, QRecruitMember>createList("recruitMembers", RecruitMember.class, QRecruitMember.class, PathInits.DIRECT2); ^ symbol: class RecruitMember location: class QMember C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRecruitMember.java:3: error: package com.querydsl.core.types does not exist import static com.querydsl.core.types.PathMetadataFactory.*; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRecruitMember.java:7: error: package com.querydsl.core.types does not exist import com.querydsl.core.types.PathMetadata; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRecruitMember.java:8: error: package javax.annotation does not exist import javax.annotation.Generated; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRecruitMember.java:9: error: package com.querydsl.core.types does not exist import com.querydsl.core.types.Path; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRecruitMember.java:10: error: package com.querydsl.core.types.dsl does not exist import com.querydsl.core.types.dsl.PathInits; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRecruitMember.java:17: error: cannot find symbol public class QRecruitMember extends EntityPathBase<RecruitMember> { ^ symbol: class EntityPathBase C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRecruitMember.java:16: error: cannot find symbol @Generated("com.querydsl.codegen.EntitySerializer") ^ symbol: class Generated C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRecruitMember.java:17: error: cannot find symbol public class QRecruitMember extends EntityPathBase<RecruitMember> { ^ symbol: class RecruitMember C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QMember.java:31: error: cannot find symbol public final ListPath<Review, QReview> reviews = this.<Review, QReview>createList("reviews", Review.class, QReview.class, PathInits.DIRECT2); ^ symbol: class ListPath location: class QMember C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QMember.java:31: error: cannot find symbol public final ListPath<Review, QReview> reviews = this.<Review, QReview>createList("reviews", Review.class, QReview.class, PathInits.DIRECT2); ^ symbol: class Review location: class QMember C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReview.java:3: error: package com.querydsl.core.types does not exist import static com.querydsl.core.types.PathMetadataFactory.*; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReview.java:7: error: package com.querydsl.core.types does not exist import com.querydsl.core.types.PathMetadata; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReview.java:8: error: package javax.annotation does not exist import javax.annotation.Generated; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReview.java:9: error: package com.querydsl.core.types does not exist import com.querydsl.core.types.Path; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReview.java:10: error: package com.querydsl.core.types.dsl does not exist import com.querydsl.core.types.dsl.PathInits; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReview.java:17: error: cannot find symbol public class QReview extends EntityPathBase<Review> { ^ symbol: class EntityPathBase C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReview.java:16: error: cannot find symbol @Generated("com.querydsl.codegen.EntitySerializer") ^ symbol: class Generated C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReview.java:17: error: cannot find symbol public class QReview extends EntityPathBase<Review> { ^ symbol: class Review C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QMember.java:37: error: cannot find symbol public QMember(Path<? extends Member> path) { ^ symbol: class Path location: class QMember C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QMember.java:37: error: cannot find symbol public QMember(Path<? extends Member> path) { ^ symbol: class Member location: class QMember C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QMember.java:41: error: cannot find symbol public QMember(PathMetadata metadata) { ^ symbol: class PathMetadata location: class QMember C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReview.java:21: error: cannot find symbol private static final PathInits INITS = PathInits.DIRECT2; ^ symbol: class PathInits location: class QReview C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReview.java:25: error: cannot find symbol public final StringPath comment = createString("comment"); ^ symbol: class StringPath location: class QReview C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReview.java:27: error: cannot find symbol public final DatePath<java.time.LocalDate> date = createDate("date", java.time.LocalDate.class); ^ symbol: class DatePath location: class QReview C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReview.java:29: error: cannot find symbol public final NumberPath<Integer> id = createNumber("id", Integer.class); ^ symbol: class NumberPath location: class QReview C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRestaurant.java:3: error: package com.querydsl.core.types does not exist import static com.querydsl.core.types.PathMetadataFactory.*; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRestaurant.java:7: error: package com.querydsl.core.types does not exist import com.querydsl.core.types.PathMetadata; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRestaurant.java:8: error: package javax.annotation does not exist import javax.annotation.Generated; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRestaurant.java:9: error: package com.querydsl.core.types does not exist import com.querydsl.core.types.Path; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRestaurant.java:10: error: package com.querydsl.core.types.dsl does not exist import com.querydsl.core.types.dsl.PathInits; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRestaurant.java:17: error: cannot find symbol public class QRestaurant extends EntityPathBase<Restaurant> { ^ symbol: class EntityPathBase C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRestaurant.java:16: error: cannot find symbol @Generated("com.querydsl.codegen.EntitySerializer") ^ symbol: class Generated C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRestaurant.java:17: error: cannot find symbol public class QRestaurant extends EntityPathBase<Restaurant> { ^ symbol: class Restaurant C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReview.java:35: error: cannot find symbol public final ListPath<ReviewImg, QReviewImg> reviewImgs = this.<ReviewImg, QReviewImg>createList("reviewImgs", ReviewImg.class, QReviewImg.class, PathInits.DIRECT2); ^ symbol: class ListPath location: class QReview C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReview.java:35: error: cannot find symbol public final ListPath<ReviewImg, QReviewImg> reviewImgs = this.<ReviewImg, QReviewImg>createList("reviewImgs", ReviewImg.class, QReviewImg.class, PathInits.DIRECT2); ^ symbol: class ReviewImg location: class QReview C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReviewImg.java:3: error: package com.querydsl.core.types does not exist import static com.querydsl.core.types.PathMetadataFactory.*; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReviewImg.java:7: error: package com.querydsl.core.types does not exist import com.querydsl.core.types.PathMetadata; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReviewImg.java:8: error: package javax.annotation does not exist import javax.annotation.Generated; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReviewImg.java:9: error: package com.querydsl.core.types does not exist import com.querydsl.core.types.Path; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReviewImg.java:10: error: package com.querydsl.core.types.dsl does not exist import com.querydsl.core.types.dsl.PathInits; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReviewImg.java:17: error: cannot find symbol public class QReviewImg extends EntityPathBase<ReviewImg> { ^ symbol: class EntityPathBase C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReviewImg.java:16: error: cannot find symbol @Generated("com.querydsl.codegen.EntitySerializer") ^ symbol: class Generated C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReviewImg.java:17: error: cannot find symbol public class QReviewImg extends EntityPathBase<ReviewImg> { ^ symbol: class ReviewImg C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReview.java:37: error: cannot find symbol public final NumberPath<Integer> star = createNumber("star", Integer.class); ^ symbol: class NumberPath location: class QReview C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReview.java:43: error: cannot find symbol public QReview(Path<? extends Review> path) { ^ symbol: class Path location: class QReview C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReview.java:43: error: cannot find symbol public QReview(Path<? extends Review> path) { ^ symbol: class Review location: class QReview C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReview.java:47: error: cannot find symbol public QReview(PathMetadata metadata) { ^ symbol: class PathMetadata location: class QReview C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReview.java:51: error: cannot find symbol public QReview(PathMetadata metadata, PathInits inits) { ^ symbol: class PathMetadata location: class QReview C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReview.java:51: error: cannot find symbol public QReview(PathMetadata metadata, PathInits inits) { ^ symbol: class PathInits location: class QReview C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReview.java:55: error: cannot find symbol public QReview(Class<? extends Review> type, PathMetadata metadata, PathInits inits) { ^ symbol: class Review location: class QReview C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReview.java:55: error: cannot find symbol public QReview(Class<? extends Review> type, PathMetadata metadata, PathInits inits) { ^ symbol: class PathMetadata location: class QReview C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReview.java:55: error: cannot find symbol public QReview(Class<? extends Review> type, PathMetadata metadata, PathInits inits) { ^ symbol: class PathInits location: class QReview C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReviewImg.java:21: error: cannot find symbol private static final PathInits INITS = PathInits.DIRECT2; ^ symbol: class PathInits location: class QReviewImg C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReviewImg.java:25: error: cannot find symbol public final NumberPath<Integer> id = createNumber("id", Integer.class); ^ symbol: class NumberPath location: class QReviewImg C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReviewImg.java:29: error: cannot find symbol public final StringPath url = createString("url"); ^ symbol: class StringPath location: class QReviewImg C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReviewImg.java:35: error: cannot find symbol public QReviewImg(Path<? extends ReviewImg> path) { ^ symbol: class Path location: class QReviewImg C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReviewImg.java:35: error: cannot find symbol public QReviewImg(Path<? extends ReviewImg> path) { ^ symbol: class ReviewImg location: class QReviewImg C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReviewImg.java:39: error: cannot find symbol public QReviewImg(PathMetadata metadata) { ^ symbol: class PathMetadata location: class QReviewImg C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReviewImg.java:43: error: cannot find symbol public QReviewImg(PathMetadata metadata, PathInits inits) { ^ symbol: class PathMetadata location: class QReviewImg C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReviewImg.java:43: error: cannot find symbol public QReviewImg(PathMetadata metadata, PathInits inits) { ^ symbol: class PathInits location: class QReviewImg C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReviewImg.java:47: error: cannot find symbol public QReviewImg(Class<? extends ReviewImg> type, PathMetadata metadata, PathInits inits) { ^ symbol: class ReviewImg location: class QReviewImg C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReviewImg.java:47: error: cannot find symbol public QReviewImg(Class<? extends ReviewImg> type, PathMetadata metadata, PathInits inits) { ^ symbol: class PathMetadata location: class QReviewImg C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QReviewImg.java:47: error: cannot find symbol public QReviewImg(Class<? extends ReviewImg> type, PathMetadata metadata, PathInits inits) { ^ symbol: class PathInits location: class QReviewImg C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRestaurant.java:23: error: cannot find symbol public final StringPath category = createString("category"); ^ symbol: class StringPath location: class QRestaurant C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRestaurant.java:25: error: cannot find symbol public final StringPath cell_number = createString("cell_number"); ^ symbol: class StringPath location: class QRestaurant C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRestaurant.java:27: error: cannot find symbol public final NumberPath<Integer> id = createNumber("id", Integer.class); ^ symbol: class NumberPath location: class QRestaurant C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRestaurant.java:29: error: cannot find symbol public final StringPath load_address = createString("load_address"); ^ symbol: class StringPath location: class QRestaurant C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRestaurant.java:31: error: cannot find symbol public final NumberPath<Double> location_x = createNumber("location_x", Double.class); ^ symbol: class NumberPath location: class QRestaurant C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRestaurant.java:33: error: cannot find symbol public final NumberPath<Double> location_y = createNumber("location_y", Double.class); ^ symbol: class NumberPath location: class QRestaurant C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRestaurant.java:35: error: cannot find symbol public final ListPath<Menu, QMenu> menus = this.<Menu, QMenu>createList("menus", Menu.class, QMenu.class, PathInits.DIRECT2); ^ symbol: class ListPath location: class QRestaurant C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRestaurant.java:35: error: cannot find symbol public final ListPath<Menu, QMenu> menus = this.<Menu, QMenu>createList("menus", Menu.class, QMenu.class, PathInits.DIRECT2); ^ symbol: class Menu location: class QRestaurant C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QMenu.java:3: error: package com.querydsl.core.types does not exist import static com.querydsl.core.types.PathMetadataFactory.*; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QMenu.java:7: error: package com.querydsl.core.types does not exist import com.querydsl.core.types.PathMetadata; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QMenu.java:8: error: package javax.annotation does not exist import javax.annotation.Generated; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QMenu.java:9: error: package com.querydsl.core.types does not exist import com.querydsl.core.types.Path; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QMenu.java:10: error: package com.querydsl.core.types.dsl does not exist import com.querydsl.core.types.dsl.PathInits; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QMenu.java:17: error: cannot find symbol public class QMenu extends EntityPathBase<Menu> { ^ symbol: class EntityPathBase C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QMenu.java:16: error: cannot find symbol @Generated("com.querydsl.codegen.EntitySerializer") ^ symbol: class Generated C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QMenu.java:17: error: cannot find symbol public class QMenu extends EntityPathBase<Menu> { ^ symbol: class Menu C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRestaurant.java:37: error: cannot find symbol public final StringPath name = createString("name"); ^ symbol: class StringPath location: class QRestaurant C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRestaurant.java:39: error: cannot find symbol public final ListPath<RecruitBoard, QRecruitBoard> recruitBoards = this.<RecruitBoard, QRecruitBoard>createList("recruitBoards", RecruitBoard.class, QRecruitBoard.class, PathInits.DIRECT2); ^ symbol: class ListPath location: class QRestaurant C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRestaurant.java:39: error: cannot find symbol public final ListPath<RecruitBoard, QRecruitBoard> recruitBoards = this.<RecruitBoard, QRecruitBoard>createList("recruitBoards", RecruitBoard.class, QRecruitBoard.class, PathInits.DIRECT2); ^ symbol: class RecruitBoard location: class QRestaurant C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRecruitBoard.java:3: error: package com.querydsl.core.types does not exist import static com.querydsl.core.types.PathMetadataFactory.*; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRecruitBoard.java:7: error: package com.querydsl.core.types does not exist import com.querydsl.core.types.PathMetadata; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRecruitBoard.java:8: error: package javax.annotation does not exist import javax.annotation.Generated; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRecruitBoard.java:9: error: package com.querydsl.core.types does not exist import com.querydsl.core.types.Path; ^ C:\Users\user\IdeaProjects\intern-project\src\main\generated\com\gabia\project\internproject\common\domain\QRecruitBoard.java:10: error: package com.querydsl.core.types.dsl does not exist import com.querydsl.core.types.dsl.PathInits; ^ 100 errors
-
미해결아이폰 앱 개발 입문 2편
프레임워크 추가가 안됩니다.
스위프트 11 이라서 그런가 프레임 워크가 코코아터치 프레임워크도 아니고 해당 방법처럼 추가를하려니 사용이 불가하네요 ㅠㅠ 무엇이 변경된건가요 ???