일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- MVC
- Intellj
- Kafka
- MST
- JPA
- Spring Cloud Feign
- 쿼리
- 클라우드
- 데이터베이스
- golang
- Spring Boot
- Jenkins
- 페이징
- Spring
- 자료구조
- feign
- aws
- 디자인 패턴
- 코딩
- retry
- 자바
- 운영체제
- DP
- db
- SQL
- 백준
- 알고리즘
- Spring Cloud
- PL/SQL
- 오라클
- Today
- Total
목록전체 글 (141)
justgo_developer

Spring FrameWork 정의 The Spring Framework provides a comprehensive programming and configuration model for modern Java-based enterprise applications - on any kind of deployment platform. A key element of Spring is infrastructural support at the application level: Spring focuses on the "plumbing" of enterprise applications so that teams can focus on application-level business logic, without unnece..

자바에서 자주 사용하는 메인메소드 public static void main(String[] args)의 의미는 무엇일까? -> 그 이유는 jvm 때문 ■ public(접근제어자) : jvm이 main함수를 어디서든 접근 가능해야 하므로 ■ static(정적함수) : main 메소드는 객체를 생성하지 않아도 자동으로 메모리에 생성되어 어디서든 호출 가능 ■ void : main 메소드가 끝나면 return이 없어도 되기 때문 ■ main : jvm이 실행할 메소드가 뭔지 정해놓은 규칙 ■ String[] args : 자바 실행 시 매개변수를 받기 위한 배열

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 수정