码迷,mamicode.com
首页 >  
搜索关键字:sessions    ( 348个结果
tomcat启动时报:IOException while loading persisted sessions: java.io.EOFException的解决方案
错误的原因是:EOFException表示输入过程中意外地到达文件尾或流尾的信号,导致从session中获取数据失败。这是由于tomcat上次非 正常关闭时有一些活动session被持久化(表现为一些临时文件),在重启时,tomcat尝试去恢复这些session的持久化数据但又读取失败造成 的。此异...
分类:编程语言   时间:2014-09-24 15:11:06    阅读次数:184
Fiddler (六) 最常用的快捷键
Fiddler (六) 最常用的快捷键CommandActionSample usage?sometextAs you typesometext, Fiddler will highlight sessions where the URL containssometext.Hit Enter to ...
分类:其他好文   时间:2014-09-20 14:04:37    阅读次数:247
object- and mysql-based session-handler
object- and mysql-based session-handler, requires the following table:? CREATE TABLE `ws_sessions` (? ? `session_id` varchar(255) binary NOT NULL default ‘‘,? ? `session_expires` int(10) unsi...
分类:数据库   时间:2014-09-18 19:11:54    阅读次数:308
【Hibernate】Illegal attempt to associate a collection with two open sessions
今天在用Hibernate对对象进行修改操作的时候报了这个错。之前一直没什么错误,但是今天修改了一下表结构,增加了一个OneToMany的映射。所以在我获取对象,重新set一个变量之后就报了这个错误了。Illegal attempt to associate a collection with tw...
分类:系统相关   时间:2014-09-17 20:04:32    阅读次数:324
在线人数的统计(从tomcat拿到sessions的个数)
tomcat对request(javax.servlet.http.HttpServletRequest)的实现是org.apache.catalina.connector.RequestFacade RequestFacade有一个protected的request (org.apache.catalina.connector.Request)属性 request 能拿到Context (org.apache.catalina.Context) context能拿到Manager(org.apache.c...
分类:其他好文   时间:2014-09-12 19:16:34    阅读次数:353
从Windows远程Ubuntu
关键字:Windows,Ubuntu,Putty。OS:Windows 7,Ubuntu。1.下载Putty:http://www.putty.org/。2.双击运行putty.exe。输入信息如下:HostName:Ubuntu的ip地址。Saved Sessions:MyUbuntu0。点击“S...
分类:Windows程序   时间:2014-09-11 19:07:12    阅读次数:293
mysql相关的设置
首先my sql有个配置文件 my.ini,该文件在mysql的安装包中。1.在该文件中可以设置mysql的最大连接数,# The maximum amount of concurrent sessions the MySQL server will# allow. One of these con...
分类:数据库   时间:2014-09-11 16:43:02    阅读次数:261
使用RabbitMQ管理Tomcat Sessions
云架构的流行,使得水平伸缩成为王者( horizontal scalability is king),而传统的Tomcat集群是通过广播集群,也就是让一台机器上的Session广播到其他机器上,这样的坏处就是大量Session中数据在服务器之间不停被复制拷贝,增加服务器负担,服务器越多,复制越厉害,...
分类:其他好文   时间:2014-09-09 10:35:18    阅读次数:331
Teradata Fastload 使用方法
第一步: 首先打开 teradata fastload.exe第二步: 通过粘贴导入脚本脚本:SESSIONS 4;ERRLIMIT 25;SET RECORD VARTEXT ",";LOGON localhost/Teradata_Education,Educate; /* localhost:...
分类:其他好文   时间:2014-09-03 23:56:47    阅读次数:619
在线会话管理
有时候需要显示当前在线人数、当前在线用户,有时候可能需要强制某个用户下线等;此时就需要获取相应的在线用户并进行一些操作。会话控制器@RequiresPermissions("session:*")@Controller@RequestMapping("/sessions")public class ...
分类:其他好文   时间:2014-09-03 12:39:36    阅读次数:265
348条   上一页 1 ... 30 31 32 33 34 35 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!