묻고 답해요
164만명의 커뮤니티!! 함께 토론해봐요.
인프런 TOP Writers
-
해결됨만들면서 배우는 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 이라서 그런가 프레임 워크가 코코아터치 프레임워크도 아니고 해당 방법처럼 추가를하려니 사용이 불가하네요 ㅠㅠ 무엇이 변경된건가요 ???
-
Vue로 Nodebird SNS 만들기
동영상으로 올릴게여 한번 봐주시면 감사여
삭제된 글입니다
-
미해결파이썬 입문 및 웹 크롤링을 활용한 다양한 자동화 어플리케이션 제작하기
activate/deactivate 명령어 실행시 CommendNotFoundError가 발생합니다.
위의 사진같이 에러가 발생합니다. 어떻게 해결 할 수 있을까요?
-
미해결파이썬 알고리즘 문제풀이 입문(코딩테스트 대비)
강의자료가 안보여요.
강의자료, 채점폴더어디있어요?
-
미해결화이트해커가 되기 위한 8가지 웹 해킹 기술
RE: 답변 감사합니다..!!
질문내용 : 칼리리눅스를 2020년 1월버전으로 정상 설치 후 부팅 시 username과 password를 입력하는데에서 root, toor를 입력했는데도 정상적으로 로그인이 안되는 문제가 있습니다. 인터넷에도 root, toor 이외의 계정에 대한 정보는 찾을 수 없었습니다. 칼리리눅스 부팅 전 설정창에서 username과 password가 각각 kali인 것을 확인하고 해당 값으로 로그인을 했는데 정상적으로 로그인이 되더라구요.. 근데 이 계정이 Root계정인지는 확실하지 않은 것 같아서 질문남겨봅니다.. 답변내용 : 새 버전에서 계정과 관련된 설정이 바뀌었나보네요. 원활한 강좌 실습을 위해서는 카페에서 2019.1 버전들 다운로드하여 진행해주세요. 더 궁금한 내용을 물어보거나 감사의 인사를 남겨주세요. PS : 질문내용이 두서없어서 수정하려고 했는데 삭제버튼을 잘못눌러서 해당 질문이 삭제된 후에 답변이 달려서..ㅜ죄송합니다. 카페에서 해당 버전으로 다운 받아서 실행해 보겠습니다. 빠른답변 감사드립니다..!!
-
미해결Node.js 교과서 - 기본부터 프로젝트 실습까지
Cli 프로그램 구현하기 1&2 질문 드립니다.
안녕하세요 제로초님, Cli template.js 로 폴더 생성과 파일 만드는 코드를 따라 구현 했었 습니다. 명령어(cli)를 입력 했는데 프로그램이 그대로 종료가 되거나 혹은 template.js 파일을 열어 보여 주더라구요. package.json의 bin 객체 내용을 template.js 로 바꿔주고 코드도 제로초님이 작성한 코드와 함께 한줄씩 비교해 봤는데 문제는 없었 습니다. 혹시 이렇게 프로그램이 실행 명령을 치자마자 죽는 경우 어떻게 하면 될까요? 감사 합니다.
-
화이트해커가 되기 위한 8가지 웹 해킹 기술
칼리리눅스 로그인시 username과 password문제..
삭제된 글입니다
-
Vue로 Nodebird SNS 만들기
async await 적용하니까 되긴 되는데 401 에러가 발생해서여
삭제된 글입니다
-
미해결React로 NodeBird SNS 만들기
질문있습니다.
로그인할 때 크롬 개발자 도구 네트워크 탭에서 저 부분의 비밀번호는 안보이게 할 수 없나요?? 강의에서 응답부분은 제거하시는데 요청부분 저기는 냅두시는거 같아서 상관이없나....? 궁금해서 질문드립니다.
-
해결됨홍정모의 따라하며 배우는 C언어
char 자료형 입력시 발생되는 무한루프에 관하여
1:56 질문입니다 int main() { int i; printf("Enter Secret code : "); scanf("%d", &i); for (int i=0; i != 337; ) { printf("Enter Secret code : "); scanf("%d", &i); } printf("Good!"); return 0; } 다음과 같이 입력하여, 337의 코드를 받았을 때 GOOD이라는 출력과 함께 프로그램이 종료되는 코드입니다. 저의 질문은, 정수형 문자가 아닌 d 등의 char 자료형을 사용하면 출력할 때 왜 무한루프가 되는지 궁금합니다. 저번에도 이런 비슷한 예제를 했었는데, 그때는 while을 사용하였는데 그 때도 정수형이 아닌 c 등의 문자를 기입하면 무한루프로 출력이 됬었거든요. 알고싶습니다
-
미해결남박사의 파이썬 기초부터 실전 100% 활용
질문 있습니다!
초반에 2분11초에 for word in words_dict 루프문으로 딕셔너리 키 값만 가져온다고 하셨는데 혹시 왜 키 값만 가져오는건지 제가 알수있을까요?
-
미해결쉽게 배우는 Webpack
webpack app/index.js dist/bundle.js 시 오류가 뜹니다.
webpack app/index.js dist/bundle.js 시 오류가뜹니다. 계속 다시 해봐도 같은 증상이네요..4- Built at: 2020-02-03 13:46:48 1 asset Entrypoint main = main.js [1] multi ./app/index.js dist/bundle.js 40 bytes {0} [built] [2] ./app/index.js 286 bytes {0} [built] [3] (webpack)/buildin/global.js 472 bytes {0} [built] [4] (webpack)/buildin/module.js 497 bytes {0} [built] + 1 hidden module WARNING in configuration The 'mode' option has not been set, webpack will fallback to 'production' for this value. Set 'mode' option to 'development' or 'production' to enable defaults for each environment. You can also set it to 'none' to disable any default behavior. Learn more: https://webpack.js.org/configuration/mode/ ERROR in multi ./app/index.js dist/bundle.js Module not found: Error: Can't resolve 'dist/bundle.js' in 'C:\Users\tmdgn\Desktop\BOBA\webpack\LearnWebpack-master\LearnWebpack-master\getting-started' @ multi ./app/index.js dist/bundle.js main[1]
-
미해결파이썬 입문 및 웹 크롤링을 활용한 다양한 자동화 어플리케이션 제작하기
conda remove --name test1 --all이 작동하지 않습니다
컴퓨터는 mac OS입니다. 검색해서 알아본 결과 conda env remove --name test1 로 하니 작동이 되어 test1폴더가 삭제된 것을 확인했으나 conda env remove --name test1 --all 은 터미널에서 뒤에 --all을 모르겠다면서 오류를 뱉더군요. 뒤에 --all을 붙이지 않아도 가상환경을 깔끔히 삭제하는데에 문제가 없는지 궁금합니다.