작성
·
2.5K
0
에러 코드 첨부합니다!
어떻게 해결할 수 있을까요? ㅠㅠ
C:\spring\pjt\hello-spring\hello-spring\src\main\java\hello\hellospring\domain\Member.java:4:25
java: package javax.persistence does not exist
C:\spring\pjt\hello-spring\hello-spring\src\main\java\hello\hellospring\domain\Member.java:5:25
java: package javax.persistence does not exist
C:\spring\pjt\hello-spring\hello-spring\src\main\java\hello\hellospring\domain\Member.java:6:25
java: package javax.persistence does not exist
C:\spring\pjt\hello-spring\hello-spring\src\main\java\hello\hellospring\domain\Member.java:7:25
java: package javax.persistence does not exist
C:\spring\pjt\hello-spring\hello-spring\src\main\java\hello\hellospring\domain\Member.java:9:2
java: cannot find symbol
symbol: class Entity
C:\spring\pjt\hello-spring\hello-spring\src\main\java\hello\hellospring\domain\Member.java:12:6
java: cannot find symbol
symbol: class Id
location: class hello.hellospring.domain.Member
C:\spring\pjt\hello-spring\hello-spring\src\main\java\hello\hellospring\domain\Member.java:12:10
java: cannot find symbol
symbol: class GeneratedValue
location: class hello.hellospring.domain.Member
C:\spring\pjt\hello-spring\hello-spring\src\main\java\hello\hellospring\domain\Member.java:12:36
java: cannot find symbol
symbol: variable GenerationType
location: class hello.hellospring.domain.Member
답변 6
0
https://drive.google.com/file/d/1ss_s87lJ0FhnzAPMNXy-Z5k2rgc2GFE2/view?usp=sharing
죄송합니다. 드라이브 사용이 처음이라 권한 설정을 누락했네요 ㅠ
설정 변경하여 다시 올렸습니다.
0
0
https://drive.google.com/file/d/1ss_s87lJ0FhnzAPMNXy-Z5k2rgc2GFE2/view?usp=sharing
입니다! 도움 주셔서 감사합니다.
0
안녕하세요. kt y님, 공식 서포터즈 OMG입니다.
https://bit.ly/3fX6ygx 에서 구글 드라이브 업로드 방법을 참고하신 후 링크를 댓글로 공유해주세요
감사합니다.
0
에러가 발생하는 Member.java 파일 코드 첨부합니다.
package hello.hellospring.domain;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
@Entity
public class Member {
@Id @GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
private String name;
public Long getId() {
return id;
}
public String getName() {
return name;
}
public void setId(Long id) {
this.id = id;
}
public void setName(String name) {
this.name = name;
}
}
안되면 이 방법들도 있습니다. 1.이 안되면 2. 진행해보시고 결과 공유해주세요.
---
1.
먼저 프로젝트를 닫은 다음에
(File-Close Project)
File -> Open -> 해당 프로젝트의 build.gradle을 선택해주세요. 그 다음에 선택창이 뜨는데, Open as Project를 선택해주세요.
2. File - Invalidate Caches / Restart 클릭