반응형
1. 라이브러리
Spring JDBC
<!-- https://mvnrepository.com/artifact/org.springframework/spring-jdbc -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>${org.springframework-version}</version>
</dependency>
2. root-context.xml 내용 추가
<!-- Root Context: defines shared resources visible to all other web components -->
아래 부분에 추가
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="org.mariadb.jdbc.Driver" />
<property name="url" value="jdbc:mariadb://127.0.0.1:3306/board" />
<property name="username" value="root" />
<property name="password" value="1234" />
</bean>
반응형
'Spring' 카테고리의 다른 글
[Spring] enum(이늄) 사용자 레벨 관리 기능 (0) | 2022.06.15 |
---|---|
[Spring] @Controller, @RestController의 차이 (0) | 2022.06.14 |
[Spring] StringUtils 예제 (0) | 2022.06.08 |
[Spring] MyBatis 적용 (0) | 2022.06.07 |
[Spring] 로그, 한글 filter 적용, RequestMapping 관련, ajax (0) | 2022.06.03 |