mic050r / SpringBoot_2024

2024 3학년 스프링 부트 실습 코드
0 stars 0 forks source link

DB 설정 #4

Open mic050r opened 1 month ago

mic050r commented 1 month ago

server.port=8088 spring.datasource.driver-class-name=oracle.jdbc.OracleDriver spring.datasource.url=jdbc:oracle:thin:@localhost:1521:xe spring.datasource.username=scott spring.datasource.password=tiger

spring.thymeleaf.cache=false mybatis.mapper-locations=classpath*:mybatis/mapper/*/.xml

mic050r commented 3 weeks ago

SpringPrj >> memo Table

create table memo(
id number(10) not null,
writer varchar2(20),
contents varchar2(300),
regDate timestamp default sysdate,
primary key(id));

desc memo;

create sequence seq_id increment by 1 start with 1;