본문 바로가기

Memo

(4)
QueryDSL로 생성한 Q도메인들을 찾지 못할 때 https://java.ihoney.pe.kr/279 Intellij 에서 QueryDSL로 생성한 Q도메인들을 찾지 못할 때 프로젝트를 실행시키려고 했는데, 생성된 QueryDSL용 Q도메인(@Entity 애노테이션이 사용된 도메인 객체를 QueryDSL에서 변형가공)을 인식하지 못하는 문제가 발생했다. 이클립스에서는 별다른 문제없 java.ihoney.pe.kr https://kururu.tistory.com/147 ch06-QueryDSL gradle 소스 변경 힌트 : https://stackoverflow.com/questions/23734774/when-adding-jar-module-android-must-not-contain-source-root (when adding jar) - Modu..
@joincolumn cannot resolve column https://stackoverflow.com/questions/29155350/jpa-cannot-resolve-column-intellij JPA Cannot resolve column/IntelliJ I'm trying to map some Java classes using the Hibernate JPA implementation. My problem is that I can't use hardcoded Strings als column namens. You can see the error message I get in the picture be... stackoverflow.com
java import error https://zanywitch.tistory.com/79 JAVA , JSP import 에러 문법상에 문제없는데, can not resolved 나올때.. 안녕하세요 엉뚱한 마녀입니다. JAVA , JSP import 에러 문법상에 문제없는데, can not resolved 나올때가 있습니다. (위의 사진처럼) 이럴경우 처음에는 당혹하곤하죠.. 이러는 경우는 프로젝트를 새로 import.. zanywitch.tistory.com
스프링 시큐리티의 지정된 테이블을 생성하는 SQL CREATE TABLE users( username VARCHAR2(50) NOT NULL PRIMARY KEY, password VARCHAR2(50) NOT NULL, enabled CHAR(1) DEFAULT '1' ); CREATE TABLE authorities( username VARCHAR2(50) NOT NULL, authority VARCHAR2(50) NOT NULL, CONSTRAINT fk_authorities_users FOREIGN KEY(username) REFERENCES users(username)); CREATE UNIQUE INDEX ix_auth_username on authorities (username, authority); INSERT INTO users (use..