java - getCurrentSession 在每次调用时创建新连接

标签 java mysql spring hibernate

我是 spring 和 hibernate 的新手,一切工作正常,但我检查了每次调用 getCurrentSession 时,mysql 中都创建了一个新的连接线程,该线程进入休眠状态。据我所知,这对于数据库来说不是一个好的做法。为什么 getCurrentSession 每次都创建新的连接线程。 我的代码是 -

application-context.xml

<?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:aop="http://www.springframework.org/schema/aop"
    xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.0.xsd">

    <tx:annotation-driven />
    <context:component-scan base-package="com.vc.teacher" />


    <bean id="transactionManager"
        class="org.springframework.orm.hibernate4.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory"></property>
    </bean>

    <bean id="sessionFactory"
        class="org.springframework.orm.hibernate4.LocalSessionFactoryBean"
        lazy-init="false">
        <property name="dataSource" ref="dataSource" />
        <property name="annotatedClasses">
            <list>
                <value>com.vc.teacher.entities.User</value>
            </list>
        </property>
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">org.hibernate.dialect.HSQLDialect</prop>
                <!-- <prop key="hibernate.current_session_context_class">thread</prop> -->
                <prop key="show_sql">true</prop>
            </props>
        </property>
    </bean>



    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
        <property name="url" value="jdbc:mysql://localhost:3306/teacher"></property>
        <property name="username" value="root"></property>
        <property name="password" value="root"></property>
    </bean>

    <bean id="userDao" class="com.vc.teacher.db.dao.UserDao">
        <property name="sessionFactory" ref="sessionFactory"></property>
    </bean>

</beans>

UserDao 类

package com.vc.teacher.db.dao;

import java.util.List;

import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.transaction.annotation.Transactional;

import com.vc.teacher.entities.User;

public class UserDao {


    @Autowired
    SessionFactory sessionFactory;

    public SessionFactory getSessionFactory() {
        return sessionFactory;
    }

    public void setSessionFactory(SessionFactory sessionFactory) {
        this.sessionFactory = sessionFactory;
    }

    @Transactional
    public User checkCreditionals(String email, String password){
        User user = null;
        Session session  =  sessionFactory.getCurrentSession();
        Query query =   session.createQuery("from User where email = '"+email+"' and password = '"+password+"'");
        List list   =   query.list();
        if(list.size()>0)
            user =  (User)list.get(0);

        return user;
    }

    @Transactional
    public boolean registerUser(User user){
        boolean result = false;
        Session session = sessionFactory.getCurrentSession();
        try{
            user.setUserTypeId(2);
            session.save(user);

            result = true;
        } catch (Exception e){
            result = false;
            e.printStackTrace();
        }

        return result;
    }

}

实体类 - 用户

package com.vc.teacher.entities;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;

@Entity
@Table(name="user")
public class User {

    @Id
    @GeneratedValue
    @Column(name="user_id")
    private int id;
    @Column(name="age")
    private int age;
    @Column(name="user_type_id")
    private int userTypeId;
    @Column(name="first_name")
    private String firstName;
    @Column(name="last_name")
    private String lastName;
    @Column(name="profession")
    private String profession;
    @Column(name="phone")
    private String phone;
    @Column(name="email")
    private String email;
    @Column(name="password")
    private String password;
    @Column(name="address")
    private String address;
    @Column(name="status")
    private String status;


    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    }
    public int getAge() {
        return age;
    }
    public void setAge(int age) {
        this.age = age;
    }

    public int getUserTypeId() {
        return userTypeId;
    }
    public void setUserTypeId(int userTypeId) {
        this.userTypeId = userTypeId;
    }
    public String getFirstName() {
        return firstName;
    }
    public void setFirstName(String firstName) {
        this.firstName = firstName;
    }
    public String getLastName() {
        return lastName;
    }
    public void setLastName(String lastName) {
        this.lastName = lastName;
    }
    public String getProfession() {
        return profession;
    }
    public void setProfession(String profession) {
        this.profession = profession;
    }
    public String getPhone() {
        return phone;
    }
    public void setPhone(String phone) {
        this.phone = phone;
    }
    public String getEmail() {
        return email;
    }
    public void setEmail(String email) {
        this.email = email;
    }
    public String getPassword() {
        return password;
    }
    public void setPassword(String password) {
        this.password = password;
    }
    public String getAddress() {
        return address;
    }
    public void setAddress(String address) {
        this.address = address;
    }
    public String getStatus() {
        return status;
    }
    public void setStatus(String status) {
        this.status = status;
    }

}

Controller 类 - AccountController

package com.vc.teacher.controller;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;

import com.vc.teacher.db.dao.UserDao;
import com.vc.teacher.entities.User;

@Controller
public class AccountController {

    @RequestMapping("/login")
    public String loginUser(@RequestParam("email") String email,
            @RequestParam("password") String password, Model model) {
        ApplicationContext context = new ClassPathXmlApplicationContext(
                "applicationContext.xml");
        User user = ((UserDao) context.getBean("userDao")).checkCreditionals(
                email, password);
        if (user != null) {
            model.addAttribute("user", user);
            return "jsp/profile";
        } else {
            model.addAttribute("error", "Wrong creditionals");
            return "jsp/signin";
        }

    }

    @RequestMapping("/signUp")
    public String initilize(Model model) {
        model.addAttribute(new User());
        return "jsp/signup";
    }

    @RequestMapping(method = RequestMethod.POST, value = "/register")
    public String signUpUser(User user, RedirectAttributes attributes) {
        boolean result = false;

        ApplicationContext context = new ClassPathXmlApplicationContext(
                "applicationContext.xml");
        user.setStatus("Deactive");
        result = ((UserDao) context.getBean("userDao")).registerUser(user);

        if (result == true) {
            attributes.addFlashAttribute("message", "You are ready to go now !");
            return "redirect:/signUp";
        } else {
            attributes.addFlashAttribute("message", "Something went wrong");
            return "redirect:/signUp";
        }

    }
}

MySql连接状态快照是-

enter image description here

最佳答案

您正在为每个请求创建 spring 上下文:

ApplicationContext context = new ClassPathXmlApplicationContext(
                "applicationContext.xml");

这应该只在应用程序启动时在监听器中发生一次。

看这里: Loading context in Spring using web.xml

您可能还想在 Controller 中注入(inject) UserDao。

关于java - getCurrentSession 在每次调用时创建新连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30550572/

相关文章:

php - Mysql两表join查询执行需要时间(每表4000条记录)

php - 选择一行没有重复条目关键字

java - JPA 条件插入

java - 从 Spring Security 2.0.2 升级到 3.2.5.RELEASE 后出现 org.springframework.beans.factory.SmartInitializingSingleton 错误

java - Eclipse 无法识别 gradle 依赖项

java - 在服务类中使用 MediaPlayer...?

MySQL 查询 - 看似奇怪的行为。这与浮点值有关吗?

java - Spring Batch 限制跨多个服务器的单个作业实例

java - 带有 JDK10 SDK 的 IntelliJ 不编译带有 1.8 目标的 Maven 项目

java - java中 'static int'和 'int'的区别