最近在ASP.NET MVC项目中碰到这样的情况:在一个controller中设置了Session,但在另一个controller的构造函数中无法获取该Session,会报"System.NullReferenceException"错误.之所以这样做是因为希望在controller构造函数中获取Session值并赋值给一个全局变量,好让该controller的多个action共享. 起先以为是ASP.NET State Service服务没有开启,或者是Web.config中sess…
(1)准备 A. 安装好redis https://github.com/MSOpenTech/redis 注意:下载release版 启动脚本如下: redis-server redis.windows.conf 双击打开 redis-cli.exe ,用自带的客户端工具进行测试 > set aaa xyz OK > get aaa "xyz" > B. php5.6的redis扩展 redis扩展下载 http://windows.php.net/downlo…
Session是应用程序与数据库之间的一个会话,其重要性不言而喻.初学Hibernate,使用SessionFactory,老老实实地打开事务,提交,回滚,关闭session. 1.直接通过SessionFactory构建Session对象(用openSession()或者getCurrentSession()),例子如下: try { SessionFactory sf = new Configuration().configure().buildSessionFactory(); Sessi…