`
pheh
  • 浏览: 11478 次
  • 性别: Icon_minigender_1
  • 来自: 天津
最近访客 更多访客>>
社区版块
存档分类
最新评论

spring中的no session问题

阅读更多

还是用代码说事吧

java 代码
  1. this.control = (TableOption) BeanFactory.getInstance().getBean("tableoption");      
  2. this.scheduler.setId(schedulerId);      
  3. this.scheduler = (TScheduler)this.control.getInfo(scheduler);    
  4. System.out.println(this.scheduler.getNode().getAuthor().getName());  

执行第四行时报错

 
  1. 严重: could not initialize proxy - no Session   
  2. org.hibernate.LazyInitializationException: could not initialize proxy - no Session   
  3.     at org.hibernate.proxy.AbstractLazyInitializer.initialize(AbstractLazyInitializer.java:57)   
  4.     at org.hibernate.proxy.AbstractLazyInitializer.getImplementation(AbstractLazyInitializer.java:111)   
  5.     at org.hibernate.proxy.pojo.cglib.CGLIBLazyInitializer.invoke(CGLIBLazyInitializer.java:150)   
  6.     at com.actmaps.rights.user.TableUserInfo$$EnhancerByCGLIB$$b4dd839.getName(<generated></generated>)   
  7.     at com.actmaps.scheduler.mail.SendMail.initParams(SendMail.java:44)   
  8.     at com.actmaps.scheduler.ReminderManage.execute(ReminderManage.java:53)   
  9.     at com.actmaps.scheduler.ReminderManage.executeInternal(ReminderManage.java:26)   
  10.     at org.springframework.scheduling.quartz.QuartzJobBean.execute(QuartzJobBean.java:86)   
  11.     at org.quartz.core.JobRunShell.run(JobRunShell.java:203)   
  12.     at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:520)   
  13. org.hibernate.LazyInitializationException: could not initialize proxy - no Session   
  14.     at org.hibernate.proxy.AbstractLazyInitializer.initialize(AbstractLazyInitializer.java:57)   
  15.     at org.hibernate.proxy.AbstractLazyInitializer.getImplementation(AbstractLazyInitializer.java:111)   
  16.     at org.hibernate.proxy.pojo.cglib.CGLIBLazyInitializer.invoke(CGLIBLazyInitializer.java:150)   
  17.     at com.actmaps.rights.user.TableUserInfo$$EnhancerByCGLIB$$b4dd839.getName(<generated></generated>)   
  18.     at com.actmaps.scheduler.mail.SendMail.initParams(SendMail.java:44)   
  19.     at com.actmaps.scheduler.ReminderManage.execute(ReminderManage.java:53)   
  20.     at com.actmaps.scheduler.ReminderManage.executeInternal(ReminderManage.java:26)   
  21.     at org.springframework.scheduling.quartz.QuartzJobBean.execute(QuartzJobBean.java:86)   
  22.     at org.quartz.core.JobRunShell.run(JobRunShell.java:203)   
  23.     at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:520)   
  24. 2007-8-30 19:12:36 com.actmaps.scheduler.ReminderManage execute   
  25. 严重: 执行定时提醒时发生异常:could not initialize proxy - no Session  

对于BeanFactory

java 代码2
  1. public class BeanFactory {   
  2.     protected static final Log log = LogFactory.getLog(BeanFactory.class);   
  3.     private static String[] contextFile = new String[]{"applicationContext.xml"};   
  4.     private static ApplicationContext ac;   
  5.     private SessionFactory sessionFactory;   
  6.     private Session session;   
  7.        
  8.     /**  
  9.      * TODO 这种单例模式的写法在多个虚拟机的情况下还是不安全的,但是一般情况下是可以的。  
  10.      * @author PHeH
     
  11.      * Created On 2007-7-7 15:47:22  
  12.      */  
  13.     static class SingletonHolder{   
  14.         static BeanFactory instance = new BeanFactory();   
  15.     }   
  16.        
  17.     private BeanFactory(){   
  18.         log.info("*************开始加载Spring*************");   
  19.         ac = new ClassPathXmlApplicationContext(contextFile);   
  20.         sessionFactory = (SessionFactory) ac.getBean("sessionFactory");   
  21.         session = SessionFactoryUtils.getSession(sessionFactory, true);   
  22.         TransactionSynchronizationManager.bindResource(sessionFactory, new SessionHolder(session));   
  23.         log.info("*************完成加载Spring*************");   
  24.     }   
  25.        
  26.     public static final BeanFactory getInstance(){   
  27.         return SingletonHolder.instance;   
  28.     }   
  29.        
  30.     /**  
  31.      * 根据bean的id取得bean的实例的方法  
  32.      * @param beanid  
  33.      * @return  
  34.      */  
  35.     public Object getBean(String beanid){   
  36.         return ac.getBean(beanid);   
  37.     }   
  38. }  

 

scheduler的配置文件
  1. <class name="TScheduler" table="Scheduler_Scheduler">  
  2.         <id name="id" type="integer" column="id">  
  3.             <generator class="foreign">  
  4.                 <param name="property">nodeparam>  
  5.             generator>  
  6.         id>  
  7.         <one-to-one name="node" class="com.actmaps.common.TNode" constrained="true" fetch="select"/>  
  8.            
  9.         <property name="valid" column="valid" type="boolean" not-null="false"/>  
  10.         <property name="startDate" column="startDate" type="java.util.Date" not-null="false"/>  
  11.         <property name="endDate" column="endDate" type="timestamp" not-null="false"/>  
  12.         <property name="repeatNum" column="repeatNum" type="integer" not-null="false"/>  
  13.         <property name="repeatInterval" column="repeatInterval" type="long" not-null="false"/>  
  14.      .......

 

node的配置文件
  1. <class name="com.actmaps.common.TTreeNode" table="Common_Node" dynamic-update="true" polymorphism="explicit">  
  2.         <id name="id" type="integer" column="id">  
  3.             <generator class="native"/>  
  4.         id>  
  5.         <discriminator column="NODE_TYPE" type="string"/>  
  6.         <property name="name" column="name" type="string" not-null="false"/>  
  7.         <many-to-one name="author" column="authorId" class="com.actmaps.rights.user.TableUserInfo" not-null="false"/>
  8. ......   
  9.           
在BeanFactory中已经将session绑定了,怎么还会报no session的异常,他在eclipse中运行正常,只是在tomcat中会出现该异常,还请大家,到底为什么会这样
分享到:
评论
3 楼 21ca 2007-12-26  
在集合上面加上fetch = FetchType.EAGER。
2 楼 lkl_1981 2007-12-26  
我也出现这个问题了!不知道为什么?
1 楼 djhyoo 2007-08-31  
把config拿来看看

相关推荐

    spring MVC No Session found for current thread

    当我们在Controller方法中尝试获取session时,如果当前请求没有与之关联的session,Spring MVC就会抛出“No Session found for current thread”的异常。 1. **配置问题**: - **DispatcherServlet配置**:确保你...

    Spring boot集成spring session实现session共享的方法

    Spring Boot 集成 Spring Session ...在本文中,我们学习了如何使用 Spring Boot 集成 Spring Session 实现 Session 共享。这种方法可以帮助我们在分布式环境中实现 Session 共享,提高应用程序的可扩展性和可靠性。

    解决Spring session(redis存储方式)监听导致创建大量redisMessageListenerContailner-X线程问题

    我们将从Spring Session的基础知识、Redis在Spring Session中的作用、监听机制导致线程问题的原因以及如何通过配置自定义线程池来解决这一问题等方面进行详细介绍。 首先,Spring Session是一个用于管理用户会话...

    Spring mvc 分步式session的实例详解

    在Servlet中,session指的是HttpSession类的对象。服务器在创建session后,会把sessionid以cookie的形式回写给客户端。只要客户端的浏览器不关,每一次访问服务器都会带上这个sessionid。这样就可以在每次请求的时候...

    Spring Boot报错:No session repository could be auto-configured, check your configuration的解决方法

    在Spring Boot应用中,当你遇到“`No session repository could be auto-configured, check your configuration`”的错误时,这通常意味着Spring Boot无法自动配置用于管理会话(session)的存储库。Spring Boot提供...

    org.hibernate.HibernateException: No Hibernate Session bound to thread

    "No Hibernate Session bound to thread" 错误信息通常是因为 Hibernate Session 未被绑定到当前线程所致。在 Hibernate 中,每个线程都需要一个 Session 对象来与数据库交互。如果未绑定 Session 到线程, ...

    详解Spring MVC拦截器实现session控制

    如果用户未登录(即session中没有该属性),则拦截器可以拒绝用户的请求,并且通过PrintWriter输出提示信息给用户,告知他们需要先登录。 拦截器的实现基于HandlerInterceptor接口,该接口中定义了几个方法,最常用...

    SpringMVC实现controller中获取session的实例代码

    首先,我们创建一个名为`SessionScope`的自定义注解,用于标记需要从Session中获取的参数或方法: ```java import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang....

    spring使用心得 java ssh

    SSH(Spring、Struts、Hibernate)是Java Web开发的经典组合,这个压缩包中包含了一些关于Spring在实际使用过程中的心得和常见问题的解决方案。 首先,"spring的事务代理.txt"可能涉及到Spring的事务管理。Spring...

    Spring4.0+Hibernate4.0+Struts2.3整合案例

    2、报错:org.hibernate.HibernateException: No Session found for current thread 意思是必须在transcation.isActive()条件下才能执行, 可以解决办法是:当方法不需要事务支持的时候,使用 Session ...

    Spring整合redis(jedis)实现Session共享的过程

    创建一个简单的应用场景,例如在登录后将用户信息存储在Session中,然后在不同的请求中验证是否能正确读取。通过多台服务器或模拟分布式环境测试Session共享的效果。 通过以上步骤,你就可以成功地使用Spring和...

    集成spring的hibernate懒加载

    同时,理解并掌握Spring与Hibernate的集成机制,以及Session、Transaction的生命周期管理,是避免此类问题的关键。以上就是关于"集成spring的hibernate懒加载"问题的详细解析,希望对你有所帮助。

    Spring/泛型Hibernate的实现

    在Spring的配置文件中,可以通过如下方式来配置Hibernate和Spring的集成: ```xml &lt;beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:...

    spring spEL 表达式详解

    **Spring SpEL(Spring Expression Language)表达式详解** Spring Expression Language,简称SpEL,是...在实际开发中,结合Eclipse和Maven,我们可以方便地构建项目,解决依赖问题,同时利用SpEL实现各种动态逻辑。

    SPRING面试宝典

    AOP(Aspect Oriented Programming)模块是Spring框架中的一个重要组成部分,它提供了一种在运行时动态插入代码的能力,可以用来实现诸如日志记录、性能监控等功能,而不必修改业务逻辑代码本身。 **1.8 解释JDBC...

    spring整合三大框架笔记

    解决no-session问题 - 当使用无状态会话(stateless session)时,可能遇到no-session异常。 - 可以通过配置扩大session作用范围的过滤器来解决。 #### 七、练习案例:用户注册 1. **导入静态页面**:设计前端...

    spring-developing-java-applications-enterprise

    它最初被设计为解决企业应用开发中的复杂性问题,随着时间的发展,Spring已经成为了一个功能强大且全面的框架,支持从简单的Web应用到复杂的分布式系统的开发。 #### 二、Spring框架的特点 - **轻量级**:Spring...

    spring框架中常用的配置

    Spring框架还提供了一系列的过滤器来处理Web应用中的请求,例如OpenSessionInViewFilter用于解决Hibernate懒加载问题。 - **OpenSessionInViewFilter**:此过滤器在请求处理开始时打开一个Hibernate会话,在请求...

    2022年Spring笔试考试题目.doc

    2.2 Spring 中 Bean 的自动装配均有 By Type、By Name、No、Constructor 方式、Autodetect 方式等。 2.3 Spring 中 ApplicationContext 可以用到的 Bean 的作用域均有 Singleton、request、session 等。 Spring ...

    spring_ioc.docx

    Spring 框架是 Java Web 开发中广泛使用的轻量级框架,其核心特性是控制反转 (IOC) 和依赖注入 (DI)。控制反转是指将对象的创建权从应用程序代码转移到框架,即不再由程序主动创建对象,而是由框架负责创建和管理。...

Global site tag (gtag.js) - Google Analytics