[Spring Boot] MVC패턴을 통해 DB 데이터 불러오기 (Oracle DB)
·
Spring
Oracle Database 19c Download for Microsoft Windows x64 (64-bit) | Oracle 대한민국Oracle Database 19c Grid Infrastructure (19.3) for Microsoft Windows x64 (64-bit) Contains the Grid Infrastructure Software including Oracle Clusterware, Automated Storage Management (ASM), and ASM Cluster File System. Download and install prior to installwww.oracle.com이번 프로젝트는 Oracle 19c 버전으로 작성했다sqlplus sys/oracle as ..
[Spring Boot] intelliJ로 Spring Boot 프로젝트 생성
·
Spring
스프링 부트(Spring Boot)스프링은 기존 기술의 복잡성을 크게 줄인 프레임워크지만 스프링을 사용하기 위해서는 여러 가지의 설정해주어야 한다스프링 부트는 스프링 기반 어플리케이션의 설정을 간편하게 처리해주는 프레임워크이다프로젝트 생성intelliJ로 Spring Boot 프로젝트를 생성하고 실행해보자빌드 타입은 Gradle로 설정했다Spring Web, Spring Web Services 두개의 의존성을 체크하고 프로젝트를 생성한다프로젝트가 생성된 모습Spring Boot는 @SpringBootApplication 어노테이션이 있는 클래스를 메인으로 실행한다바로 구동 되고 http://localhost:8080/으로 접속하면정상적으로 접속이 가능하다Error Page라고 나와있지만 정상적으로 작동된..