왜 아직도 잘 모르겠는지..객체지향프로그램에선 메소드간에는 우선순위 절차가 없이 기입할 수 있는지..예를들어 santa란 메소드를 정의하기 전에 santa란 메소드를 언급하면 빨간줄이 생기는데 그 후에 밑에 메소드를 정의하면 사라지는등..예전에 어렸을 때,GW-BASI
프로젝트 하면서 클론할 때마다 환경 설정 까먹어서 애를 먹은 설정이다.SDK 와 Language level 둘 다 이렇게 버전이 일치해야 한다.마찬가지로 밑에 Gradle JVM의 버전을 맞춰야하고,우리조는 Build and run using과 Run tests usi
SQL Error 1146: (conn=10) Table 'profile.success_login' doesn't exist=>테이블을 생성한 데이터베이스부터 만들어야 했다.SQL Error 1064: (conn=7) You have an error in your SQ
org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration required a bean of type 'org.springframework.security.oauth2
org.springframework.web.multipart.MaxUploadSizeExceededException=>스프링부트는 별도로 지정해주지 않으면 기본 업로드 용량은 1MB이라서 프로퍼티에 용량을 설정해주면 된다
An error happened during template parsing (template: "class path resource templates/board/board-detail.html"=> li>태그의 괄호 개수가 잘못되어 오류가 발생'url' attribu
java.lang.IllegalArgumentException: No enum constant me.day07.enums.Authorization.adminat java.base/java.lang.Enum.valueOf(Enum.java:240)at me.day07.e
Exception in thread "main" java.lang.NullpointerException at Main.main(Main.java:9)=>NullPointerException는 반환하려는 변수가 null(0)인데 그게 아닌 것처럼 쓰려해서 생긴 오류인데,
Cannot resolve symbol 'springframework'=>Gradle을 refresh 해주기 위해 View > Tool Windows > Gradle에 들어가야 하는데 Gradle이 실종이 되었었다.Gradle을 찾기 위해, 프로젝트 보기에서 프로젝트의
No data source are configured to run this SQL and provide advanced code assistance.=> 경고이므로 무시해도 실행은 되지만 data source를 설정해주는 게 좋다.
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: Index 5 out of bounds for length 5=> array길이가 5인데 <=5로 해서 길이가 맞지 않아서 오류.Except
~BoardService required a bean of type ~BoardMapper defining a bean of type ~BoardMapper in your configuration=> BoardMapper가 configuration이 안 되었다.@Ma
'<>'operator is not allowed for source level 1.7=> jdk버전이 너무 낮게 잡혀있어서 그렇다.unbound classpath container 'jre system library=> Biuld Path-Configur Bui
java.lang.IllegalArgumentException : 필터 매핑에서 유효하지 않은 /\*.do=>encodingFilter에서 URL이 잘못되서 발생함.'/'를 빼줌.Invalid been definition with name 'dataSource' de
sqlMapClient cannot be resolved to a type=> 라이브러리가 제대로 들어가있지 않고 import도 되지 않아서 생김.could not find resource ./config.properties/database.proberties=> co
Error Code: 1064. You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use nea
1062.Duplicate entry '2' for key 'mytable.PRIMARY'=> mytable의 PRIMARY key에 이미 2가 들어가있는데 또 넣으려했다. primary key로 지정된 것은 레코드마다 동일한 값을 가지면 안된다.1364.Field '
non-static variable cannot be referenced from a static context=> static 으로 선언된 함수내에서 static 으로 선언되지 않은 변수를 사용했을때 발생하므로 변수 선언하는 곳에서 static 키워드만 넣어주면 된다
bad operand types for binary operator=>" == " 연산자가 " & " 연산자 보다 우선 순위가 높기 때문에 이항 연산자에 대한 잘못된 피연산자 타입이라뜸.Array Index Out Of Bounds Exception=>배열 길이가
variable might not have been initialized=>로컬변수의 초기값을 넣어주어서 초기화하지 않으면 생기는 오류java.lang.ArrayIndexOutOfBoundsException=>인덱스의 범위를 넘어서서 다루면 문제가 된다.'-번째'라던가