Open mic050r opened 3 months 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;
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