1、数据库中建表
course表和Teacher表
在course表中添加外键
2、数据库中的表对应的实体类(eclipse中)
有了对应的属性后,get set方法直接 alt+S 自动生成 然后生成字符串(不懂自动生成的自己查 很多相关资料)
记得在Course表中要加入Teacher
3、编写映射文件
4、接口文件
5、Service
6、ServiceImpl
7、测试类(在src下创建一个类)
applicationContext.xml配置文件 数据库url记得换成自己的
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd">
<!--1. 配置数据源 -->
<bean id="dataSource" class="org.apache.commons.dbcp2.BasicDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="url" value="jdbc:mysql://localhost/school?useUnicode=true&characterEncoding=UTF-8&tinyInt1isBit=false&useSSL=false" />
<property name="username" value="root" />
<property name="password" value="902118" />
<!-- 最大连接数 -->
<property name="maxTotal" value="30"/>
<!-- 最大空闲连接数 -->
<property name="maxIdle" value="10"/>
<!-- 初始化连接数 -->
<property name="initialSize" value="5"/>
</bean>
<!--2. 配置MyBatis工厂,mybatis的SqlSession的工厂SqlSessionFactoryBean,同时指定数据源 dataSource:引用数据源MyBatis定义数据源,同意加载配置 -->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource"></property>
<property name="configLocation" value="classpath:config/mybatis-config.xml" />
</bean>
<!--3. mybatis自动扫描加载Sql映射文件/接口 : MapperScannerConfigurer sqlSessionFactory
basePackage:指定sql映射文件/接口所在的包(自动扫描) -->
<!--Mapper代理开发,使用Spring自动扫描MyBatis的接口并装配
(Spring将指定包中所有被@Mapper注解标注的接口自动装配为MyBatis的映射接口) -->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<!-- mybatis-spring组件的扫描器。org.hnist.dao只需要接口(接口方法与SQL映射文件中相同)-->
<property name="basePackage" value="org.hnist.dao"></property>
<property name="sqlSessionFactory" ref="sqlSessionFactory"></property>
</bean>
<!-- 指定需要扫描的包(包括子包),使注解生效。dao包在mybatis-spring组件中已经扫描,这里不再需要扫描-->
<context:annotation-config/>
<context:component-scan base-package="org.hnist.service"/>
<!--4. 添加事务管理 : DataSourceTransactionManager dataSource:引用上面定义的数据源 -->
<bean id="txManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"></property>
</bean>
<!-- 5. 开启事务注解,使用声明式事务 transaction-manager:引用上面定义的事务管理器 -->
<tx:annotation-driven transaction-manager="txManager" />
</beans>
mybatis-config.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<typeAliases>
<typeAlias alias="Teacher" type="org.hnist.model.Teacher"/>
<typeAlias alias="User" type="org.hnist.model.User"/>
<typeAlias alias="Classes" type="org.hnist.model.Classes"/>
<typeAlias alias="Course" type="org.hnist.model.Course"/>
</typeAliases>
<mappers>
<mapper resource="org/hnist/dao/TeacherMapper.xml" />
<mapper resource="org/hnist/dao/UserMapper.xml" />
<mapper resource="org/hnist/dao/ClassesMapper.xml" />
<mapper resource="org/hnist/dao/CourseMapper.xml" />
</mappers>
</configuration>
spring-mvc
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd">
<!-- 注解扫描包,使SpringMVC认为包下用了@controller注解的类是控制器 -->
<context:component-scan base-package="org.hnist.controller" />
<context:component-scan base-package="controller" />
<context:component-scan base-package="service" />
<context:component-scan base-package="dao" />
<!-- 开启注解 -->
<mvc:annotation-driven />
<!-- 定义跳转的文件的前后缀 ,视图模式配置-->
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<!-- 这里的配置我的理解是自动给后面action的方法return的字符串加上前缀和后缀,变成一个 可用的url地址 -->
<property name="prefix" value="/" />
<property name="suffix" value=".jsp" />
</bean>
<!-- 托管MyExceptionHandler -->
<bean class="exception.MyExceptionHandler"/>
<!-- 启动SpringMVC的注解功能,完成请求和注解POJO的映射 -->
<!-- <bean -->
<!-- class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"> -->
<!-- <property name="messageConverters"> -->
<!-- <list> -->
<!-- <ref bean="mappingJacksonHttpMessageConverter" /> JSON转换器 -->
<!-- </list> -->
<!-- </property> -->
<!-- </bean> -->
<!-- 配置文件上传,如果没有使用文件上传可以不用配置,当然如果不配,那么配置文件中也不必引入上传组件包 -->
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<!-- 默认编码 -->
<property name="defaultEncoding" value="utf-8" />
<!-- 文件大小最大值 -->
<property name="maxUploadSize" value="5400000" />
<!-- 内存中的最大值 -->
<property name="maxInMemorySize" value="40960" />
<!-- 启用是为了推迟文件解析,以便捕获文件大小异常 -->
<property name="resolveLazily" value="true"/>
</bean>
<!-- 注册格式化转换器 -->
<bean id="conversionService" class="org.springframework.format.support.FormattingConversionServiceFactoryBean">
<property name="formatters">
<set>
<!-- 注册自定义格式化转换器 -->
</set>
</property>
</bean>
<!-- 配置ViewResolver 。可用多个ViewResolver 。使用order属性排序。 InternalResourceViewResolver 放在最后-->
<!-- <bean class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver"> -->
<!-- <property name="order" value="1"></property> -->
<!-- <property name="mediaTypes"> -->
<!-- <map> -->
<!-- 告诉视图解析器,返回的类型为json格式 -->
<!-- <entry key="json" value="application/json" /> -->
<!-- <entry key="xml" value="application/xml" /> -->
<!-- <entry key="htm" value="text/htm" /> -->
<!-- </map> -->
<!-- </property> -->
<!-- <property name="defaultViews"> -->
<!-- <list> -->
<!-- ModelAndView里的数据变成JSON -->
<!-- <bean class="org.springframework.web.servlet.view.json.MappingJacksonJsonView" /> -->
<!-- </list> -->
<!-- </property> -->
<!-- <property name="ignoreAcceptHeader" value="true"></property> -->
<!-- </bean> -->
</beans>