Tomcat
文章平均质量分 51
fanzhongli
这个作者很懒,什么都没留下…
展开
-
tomcat context配置
<Context path="/aaa-app" docBase="aaa-app" reloadable="false"> <Resource auth="Container" driverClassName="oracle.jdbc.driver.OracleDriver" factory="or原创 2011-08-28 10:48:09 · 137 阅读 · 0 评论 -
设置toamcat的CATALINA_OPTS
CATALINA_OPTS= -server -Xdebug -Xnoagent -Djava.compiler=NONE -Duser.language=pt -Duser.country=BR -Xrunjdwp:transport=dt_socket,address=5000,server=y,suspend=n 这样就可以开启tomcat的远程debug了...2012-07-03 11:06:59 · 1810 阅读 · 1 评论 -
tomcat 管理员帐户配置
在tomcat-users.xml中加入以下配置即可 <role rolename="manager"/> <role rolename="admin"/> <role rolename="manager-gui"/> <role rolename="manager-status"/&g原创 2012-12-02 19:38:12 · 181 阅读 · 0 评论 -
在Spring boot中加入web.xml
公司有个项目,有两个子项目,两个独立的工程,我们组用的Spring boot,没有web.xml的,另一个项目组是用的liferay,有liferay6定制的tomcat7,做到中后期,客户说要放在一个tomcat里面,但是spring boot的war包放在liferay的tomcat下报错,特么只好去找怎么在spring boot里面搞个web.xml。。。先在java/webapp/WEB...原创 2017-07-18 17:59:35 · 818 阅读 · 0 评论 -
Spring boot中去掉URL后面的jsessionid
在启动类中继承SpringBootServletInitializer,然后重写这个方法 public void onStartup(ServletContext servletContext) throws ServletException { super.onStartup(servletContext); // This will set to ...原创 2017-07-18 18:04:26 · 1134 阅读 · 0 评论