SpringBoot 프로젝트 만들기 Spring Initializr Spring Initializr에서 Spring Boot 프로젝트를 쉽게 만들 수 있습니다. 위 화면과 같이 설정 후 Spring Boot프로젝트를 생성합니다. Java 설치가 필요하신 경우 참고해주세요. 2022.08.09 - [IT/Spring] - [Spring] Java SE 17 설치 및 환경 설정 [Spring] Java SE 17 설치 및 환경 설정 Java SE 17 설치하기 Java Archive Downloads - Java SE 17 (oracle.com) Java Archive Downloads - Java SE 17 WARNING: These older versions of the JDK are provided t..
Java SE 17 설치하기 Java Archive Downloads - Java SE 17 (oracle.com) Java Archive Downloads - Java SE 17 WARNING: These older versions of the JDK are provided to help developers debug issues in older systems. They are not updated with the latest security patches and are not recommended for use in production. For production use Oracle recommends downloading th www.oracle.com 환경에 맞는 파일을 받아 설치해보도록 하겠습니..
Spring이란? 스프링 프레임워크는 자바 기반의 웹 어플리케이션을 만들 수 있는 프레임워크입니다. 제어의 역전(IOC, Inversion Of Control)과 의존성 주입(DI, Dependency Injection)은 스프링에서 가장 중요한 특징중 하나입니다. 이들로 인해서 결합도를 낮출수가 있고 단위테스트가 용이하기 때문에 보다 퀄리티 높은 프로그램을 개발할 수 있습니다. 제어의 역전(IOC, Inversion Of Control) IOC가 적용된 경우, 객체의 생성을 특별한 관리 위임 주체에게 맡깁니다. 이 경우 사용자는 객체를 직접 생성하지 않고, 객체의 생명주기를 컨트롤하는 주체는 다른 주체가 됩니다. (즉, 사용자의 제어권을 다른 주체에게 넘기는 것을 IOC(제어의 역전)라고 합니다.) 요..
MariaDB Server / Client 설치하기 리눅스 버전 확인 cat /etc/system-release MariaDB yum 저장소 추가 vi /etc/yum.repos.d/mariadb.repo # MariaDB 10.4 CentOS repository list - created 2021-01-27 09:52 UTC # http://downloads.mariadb.org/mariadb/repositories/ [mariadb] name = MariaDB baseurl = https://ftp.harukasan.org/mariadb/yum/10.4/centos7-amd64 gpgkey=https://ftp.harukasan.org/mariadb/yum/RPM-GPG-KEY-MariaDB gpgc..