반응형
1) xml 파일에 bean 설정
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="org.mariadb.jdbc.Driver" />
<property name="url" value="jdbc:mariadb://localhost:3306/school" />//로컬주소:포트/데이터베이스명
<property name="username" value="root" />
<property name="password" value="****" />
</bean>
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="typeAliasesPackage" value="com.member.school.model"/>
<property name="mapperLocations" value="classpath*:com/member/school/mappers/StudentMapper.xml" />
<!-- xml파일을 정해줘야한다. 혹은 에스트리크(*).xml-->
</bean>
2) java client connecter를 lib경로나 build path에 추가
mariadb driverclass를 읽지 못하면 mariadb java client connecter jar파일을 lib에 추가한다.
3) pom.xml에 mariadb를 dependency
728x90
'[개발관련] > SpringFramework' 카테고리의 다른 글
스프링 에러 - Request method 'POST' not supported (2) | 2021.01.25 |
---|---|
Spring Boot란 / Spring과의 차이 (0) | 2019.05.13 |
SpringJDBC - Oracle 연동을 위한 pom.xml 설정 (0) | 2019.03.29 |
간단한 Spring framework의 정의 및 개념 (0) | 2019.03.29 |
[SpringFramework]스프링 시큐리티(Spring Security) 설정 (0) | 2019.03.25 |