
tomcat
curiousby
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
mac Tomcat for mac 安装
捐助开发者 在兴趣的驱动下,写一个免费的东西,有欣喜,也还有汗水,希望你喜欢我的作品,同时也能支持一下。 当然,有钱捧个钱场(右上角的爱心标志,支持支付宝和PayPal捐助),没钱捧个人场,谢谢各位。 谢谢您的赞助,我会做的更好!原创 2014-10-01 22:54:42 · 162 阅读 · 0 评论 -
手写 tomcat (nio)
ate int port = 8080; //private ExecutorService exec = Executors.newFixedThreadPool(60); private ExecutorService exec = new ThreadPoolExecutor(60, 60, 0L, TimeUnit.MILLISECONDS, new LinkedBlockingQueue<Runnable>(2000)); private Se2018-01-22 17:08:15 · 187 阅读 · 0 评论 -
docker,maven,tomcat,nexus,java 安装
undle.tar.gz # desc : 当前版本安装的2.11.4 ############################################ # 设置继承自我们创建的 tools 镜像 FROM curiousby/centos-ssh-root-java-tomcat-maven:original # 下面是一些创建者的基本信息 MAINTAINER baoyou curiousby@163.com # 复制 apache-tomcat-7.02017-11-09 18:08:31 · 122 阅读 · 0 评论 -
docker maven tomcat java 安装
2017-11-09 17:06:44 · 133 阅读 · 0 评论 -
docker linux centos tomcat session 共享问题
.2.jar jedis-2.5.2.jar tomcat-redis-session-manage-tomcat.jar 37.6.1 编辑 tomcat context.xml http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License2017-09-22 11:47:32 · 346 阅读 · 0 评论 -
docker linux centos 安装 tomcat
ache-tomcat-7.0.75 # desc : 当前版本安装的7.0.75 ############################################ # 设置继承自我们创建的 tools 镜像 FROM curiousby/centos-ssh-root-java:original # 下面是一些创建者的基本信息 MAINTAINER baoyou curiousby@163.com # 复制 apache-tomcat-7.0.75.tar.gz 文件到镜2017-09-15 14:09:52 · 119 阅读 · 0 评论 -
linux tomcat 自启动
# init script for tomcat precesses # # processname: tomcat # description: tomcat is a j2se server # chkconfig: 2345 86 16 # description: Start up the Tomcat servlet engine. if [ -f /etc/init.d/functions ]; then . /etc/init.d/functions el2017-09-10 10:02:12 · 106 阅读 · 0 评论 -
tomcat 启动耗时60-70s 问题解决
ion using [SHA1PRNG] took [76,020] milliseconds. May 19, 2017 1:10:54 PM com.orangefunction.tomcat.redissessions.RedisSessionManager startInternal solve: 1)在Tomcat环境中解决 可以通过配置JRE使用非阻塞的Entropy Source。 在catalina.sh中加入这么一行:-Djava.security.egd=fi2017-05-19 13:42:20 · 179 阅读 · 0 评论 -
tomcat session 共享 redis
ht_black_bob/9821122 1.添加 redis session jar 到 tomcat中 2. 配置 tomcat context.xml <?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more2017-04-24 10:19:32 · 99 阅读 · 0 评论 -
tomcat 跳转
age(){ window.location.href = "http://192.168.18.111/FusionAbility"; } </script> </head> <body onload="redirectToFirstPage();"> &l2016-06-03 20:40:28 · 173 阅读 · 0 评论 -
增加 tomcat 的内存(JAVA_OPTS)
2016-01-22 11:41:51 · 462 阅读 · 0 评论 -
eclipse 远程调试
上面添加这些 set JPDA_TRANSPORT=dt_socket set JPDA_ADDRESS=9000 set JPDA_SUSPEND=n 然后再 eclipse中 使用 debug remote 调试 ok 可以像 本地调试 ,调试 线上了 。。。 捐助开发者 在兴趣的驱动下,写一个免费的东西,有欣喜,也还有汗水,2016-01-20 14:39:16 · 95 阅读 · 0 评论 -
tomcat 设置session共享
ween web applications Documentation at: /docs/config/valve.html --> <!-- <Valve className="org.apache.catalina.authenticator.SingleSignOn" /> --> <!-- A2015-08-18 10:18:13 · 148 阅读 · 0 评论 -
tomcat 页面图片 管理 服务器 配置
1、需要在服务器上手动创建文件夹base路径:opt/traceupload/upload文件夹。 2、在server.xml中配置URIEncoding="UTF-8",解决<img>标签的src属性不兼容中文的图片名称,配置如下: <Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redire2015-08-17 17:45:17 · 128 阅读 · 0 评论 -
tomcat server.xml 详解
OME>/conf/server.xml文件中进行配置,每个Tomcat的组件在server.xml文件中对应一种配置元素.一下代码以XML的形式展示了各种Tomcat组件之间的关系: <Server>元素 代表了整个Catalina Servlet容器,它是Tomcat实例的顶层元素.可包含一个或多个<Service>元素. <Service>元素---不同端口2015-06-02 15:44:34 · 86 阅读 · 0 评论 -
简单部署一个 tomcat 系统
s 文件 拷贝到 WEB-INF 下,如果有些 jsp 在这里 也要 拷贝 2.jsp js 拷贝在 根目录下 ,也就是 web-inf 同级目录下 3. 进入 tomcat /bin 找到自己的tomcat 的进程 然后 kill -9 xxx , xxx是自己的进程 然后 启动 tomcat 在这里 我们使用 ./start.sh启动 ----------------------------------------------2015-05-28 11:47:49 · 134 阅读 · 0 评论 -
linux 下的安装配置
2014-10-05 22:50:49 · 102 阅读 · 0 评论 -
特定用户部署 tomcat
2018-05-23 16:45:26 · 195 阅读 · 0 评论