Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- SQL
- 자바
- 오라클
- 알고리즘
- 백준
- 운영체제
- Kafka
- 데이터베이스
- 쿼리
- Jenkins
- feign
- Spring Cloud
- Intellj
- MVC
- MST
- 클라우드
- PL/SQL
- 자료구조
- golang
- retry
- 코딩
- db
- Spring Cloud Feign
- Spring
- 페이징
- Spring Boot
- DP
- aws
- JPA
- 디자인 패턴
Archives
- Today
- Total
목록전체 글 (140)
justgo_developer
public static void main(String[] args) 의미
자바에서 자주 사용하는 메인메소드 public static void main(String[] args)의 의미는 무엇일까? -> 그 이유는 jvm 때문 ■ public(접근제어자) : jvm이 main함수를 어디서든 접근 가능해야 하므로 ■ static(정적함수) : main 메소드는 객체를 생성하지 않아도 자동으로 메모리에 생성되어 어디서든 호출 가능 ■ void : main 메소드가 끝나면 return이 없어도 되기 때문 ■ main : jvm이 실행할 메소드가 뭔지 정해놓은 규칙 ■ String[] args : 자바 실행 시 매개변수를 받기 위한 배열
IT/자바
2021. 1. 9. 16:01
[Intellj] Error:java: javacTask: source release 8 requires target release 1.8 해결방법
Q : Error:java: javacTask: source release 8 requires target release 1.8 에러 발생 A : 람다식 사용하는 버전과 설정이 맞지 않아서 발생 File > Settings > Build, Execution, Deployment > Compiler > Java Compiler > 해당 모듈 Target byteCode version 8 수정
IT/Intellj
2021. 1. 1. 21:21
[Intellj] Lambda expressions are not supported at language level ‘5’ 해결방법
Q : Intellj에서 람다표현식 사용할때 Lambda expressions are not supported at language level ‘5’ 에러 발생 A : Intellj Language Level 설정이 낮게 되어있어서 발생 [해결방법] File > Project Structure > Modules > Source > Language level 8 로 설정
IT/Intellj
2021. 1. 1. 21:14