[springboot] 회원가입
프로젝트에서 일단 controller, entity, repository, Service 패키지를 사용한다.나는 포트를 9000번 쓴다.1234567891011121314151617181920212223# WAS Portserver.port = 9000 spring.datasource.url=jdbc:oracle:thin:@//localhost:1521/XEspring.datasource.username=c##user_namespring.datasource.password=passwordspring.datasource.driver-class-name=oracle.jdbc.driver.OracleDriver # JPA ??spring.jpa.properties.hibernate.hbm2ddl.auto=up..