1.假如用户与订单 一个用户可以有多个订单 一个订单只能属于一个用户。属于一对多关系。
所以在进行映射时候,需要设置为懒加载,当查询用户时候不需要查出用户的所有订单,但是当你需要使用一个具体功能时,(比如,需要查出某某用户的所有订单的时候) , 就面临一个问题,刚才设置的是懒加载。
出现问题: 因为是懒加载,所以用户的订单只有在需要使用时候才会查出来,在对JSP页面进行渲染之前都没有查出用户对应的订单,而当需要对JSP页面进行渲染时,此时需要发出SQL语句进行查询用户下面的那些订单,而此时hibernate的会话已经关闭了,事务环境也没有,而用户的订单还没有查出来,就会报错,运行失败。
解决方案:
1.对hibernate的会话周期进行延长。(缺点:当高并发的时候特别不适用,因为延长周期是给每一个带.do的都延长会话周期,有些没必要的也延长了,所以不适用于高并发)
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
id="WebApp_ID" version="3.1">
<!-- 进来后寻找index.do -->
<welcome-file-list>
<welcome-file>index.do</welcome-file>
</welcome-file-list>
<!-- 通过上下文参数指定Spring的配置文件 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:app.xml</param-value>
</context-param>
<!-- 前端控制器 (这里用过滤器来充当) -->
<servlet>
<servlet-name>fc</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>fc</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
<!-- 所有服务进入过滤器 修改为utf-8 由spring提供此过滤器 -->
<filter>
<filter-name>enc</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>enc</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<!-- 配置延长会话周期的配置 将视图渲染出来后才关闭会话 缺点:每个.do的都延长会话周期 特别不精打细算(应用访问量大 高并发的使用此方法不合适)
<filter>
<filter-name>osiv</filter-name>名字随意取
<filter-class>org.springframework.orm.hibernate5.support.OpenSessionInViewFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>osiv</filter-name>
<url-pattern>*.do</url-pattern>(因为前面的前段控制器写的*.do)
</filter-mapping>-->
<!-- 配置创建spring IoC容器的监听器,当服务器已开启,立即启动IOC容器,服务器一关闭立刻关闭IOC容器 -->
<!-- 在spring-web-context -context loader listener -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
</web-app>
2.在业务层去修改 (缺点:代码量增加 优点:性能优越,能胜任高并发)
package com.lin.dang.biz.impl;
import org.hibernate.Hibernate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import com.lin.dang.biz.UserService;
import com.lin.dang.dao.UserDao;
import com.lin.dang.dto.UserLoginDto;
import com.lin.dang.model.User;
@Service
@Transactional
public class UserServiceImpl implements UserService {
@Autowired
private UserDao userDao;
@Override
public boolean login(UserLoginDto user) {
User temp = userDao.findUserByName(user.getUsername());
if (temp != null) {
return temp.getPassword().equals(user.getPassword());
}
return false;
}
@Override
public boolean register(User user) {
return userDao.save(user);
}
@Override
public User getUserDetail(String username) {
User user = userDao.findUserByName(username);
if (Hibernate.isInitialized(user)) {
Hibernate.initialize(user);
}
//假定加载user时候没有将用户的订单及时加载出来,假设使用的默认懒加载,此时是第二种方法。
return user;
}
}