써먹는 웹개발
[Java 에러] java: cannot find symbol. 각각의 상황 해결방법 본문
728x90
반응형
1. 에러 메시지가 'class RequestParam'일때
- 에러 메시지
java: cannot find symbol symbol: class RequestParam location: class hello.hellospring.controller.HelloController |
- 해결방법 : 자바 소스 위에 해당 소스 추가
import org.springframework.web.bind.annotation.RequestParam; |
2. 에러 메시지가 'method setName'일때
- 에러 메시지
java: cannot find symbol symbol: class RequestParam location: class hello.hellospring.controller.HelloControllerjava.lang.String) |
- 해결방법 : Hello 객체에 다음 소스 추가
public void setName(String name) { this.name = name; } |
728x90
반응형
'웹개발 > Java & Jsp' 카테고리의 다른 글
[Java] list 데이터 전부 마지막 object 값으로 추가(add)되는 문제 해결방법 (0) | 2021.07.23 |
---|---|
[Jsp] HTTP 에러코드 별 설명 (0) | 2021.04.17 |
[Java 에러] class 클래스명 is public, should be declared in a file named 파일명.java (0) | 2021.03.24 |
[Java] 프레임워크와 라이브러리의 차이점 (0) | 2021.03.24 |
[Java] NullPointException 에러가 안 나타나는 개발 방법 (0) | 2021.03.02 |
Comments