赞
踩
就是想来试试SSM整合可不可以简单一点呢,吃太饱吧,
然后这次我就是这样的。用一个用户分页查询的案例来,讲吧
大概就像这样子。。。
配置文件就下面两个,一个是web.xml还有一个是spring.xml
web.xml
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd" version="4.0"> <servlet> <servlet-name>liliya</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:spring.xml</param-value> </init-param> </servlet> <servlet-mapping> <servlet-name>liliya</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> </web-app>
在这个配置文件中,我把springmvc和mybatis必须注入的bean都放到了一起。
springmvc的视图解析器我就没有配置前缀和后缀了,不是很喜欢。
数据源我使用的Druid的数据源,据说这个是最好的数据源。
spring.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd"> <context:component-scan base-package="com.liliya"/> <!-- mvc注解驱动支持--> <mvc:annotation-driven/> <context:annotation-config/> <mvc:default-servlet-handler/> <!-- 视图解析器--> <bean id="shitu" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> </bean> <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close"> <!-- 基本属性 url、user、password --> <property name="url" value="jdbc:mysql://localhost:3306/mybatis?serverTimezone=UTC" /> <property name="username" value="root" /> <property name="password" value="admin" /> <property name="driverClassName" value="com.mysql.jdbc.Driver" /> <!-- 配置初始化大小、最小、最大 --> <property name="initialSize" value="3" /> <property name="minIdle" value="3" /> <property name="maxActive" value="20" /> <!-- 配置获取连接等待超时的时间 --> <property name="maxWait" value="60000" /> <!-- 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒 --> <property name="timeBetweenEvictionRunsMillis" value="60000" /> <!-- 配置一个连接在池中最小生存的时间,单位是毫秒 --> <property name="minEvictableIdleTimeMillis" value="300000" /> <property name="validationQuery" value="SELECT 1" /> <property name="testWhileIdle" value="true" /> <property name="testOnBorrow" value="false" /> <property name="testOnReturn" value="false" /> <!-- 打开PSCache,并且指定每个连接上PSCache的大小 --> <property name="poolPreparedStatements" value="true" /> <property name="maxPoolPreparedStatementPerConnectionSize" value="20" /> </bean> <!-- <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">--> <!-- <property name="dataSource" ref="dataSource"/>--> <!-- </bean>--> <bean id="sqlSession" class="org.mybatis.spring.SqlSessionFactoryBean"> <property name="dataSource" ref="dataSource"/> <!-- 如果写了mapperxml的话,就加上这个--> <!-- <property name="mapperLocations" value="classpath:mapper/*.xml"/>--> </bean> <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"> <property name="sqlSessionFactoryBeanName" value="sqlSession"/> <property name="basePackage" value="com.liliya.dao"/> </bean> </beans>
(1) 实体类
public class User implements Serializable {
private static final long serialVersionUID = -3338359432217195554L;
private int id;
private String name;
private String pwd;
//get set方法省略
(2)dao层接口
@Repository
public interface UserDao {
@Select("select * from mybatis.user limit #{page},#{step}")
List<User> queryUserLimit(@Param("page") Integer page, @Param("step") Integer step);
}
(3)service层
public interface UserService {
//分页查询用户
List<User> queryUserLimit(@Param("page") Integer page, @Param("step") Integer step);
service实现层
@Service
public class UserServiceImpl implements UserService {
@Autowired
private UserDao userDao;
@Override
public List<User> queryUserLimit(Integer page, Integer step) {
return userDao.queryUserLimit((page-1)*step,step);
}
}
(4) controller层
@Controller
public class UserController {
@Autowired
private UserService userService;
@GetMapping("/users/{page}")
public void users(@PathVariable("page") Integer page){
List<User> users = userService.queryUserLimit(page, 5);
for (User user : users) {
System.out.println(user);
}
System.out.println("**************");
}
}
不过我这里没有整合页面。。。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。