1.war包放到webapps根目录下。2.修改tomcat目录下的conf文件夹里面的的server.xml,在之间加入: path="/hello"为部署后运行的url路径docBase war的文件名3.启动tomcat。搞定。
分类:
其他好文 时间:
2014-08-28 19:31:35
阅读次数:
201
4.0.0 com spring war 0.0.1-SNAPSHOT spring Maven Webapp http://maven.apache.org org.springframewo...
分类:
其他好文 时间:
2014-08-28 14:36:49
阅读次数:
425
题目大意:在一个有向图中,每两点间通信需要一定的时间,但同一个强连通分量里传递信息不用时间,给两点u,v求他们最小的通信时间。解题过程:1.首先把强连通分量缩点,然后遍历每一条边来更新两个强联通分量之间的距离。。2.直接Floyd会超时,应该用dijstra或者spfa做k次最短路。犯的错误:前向星...
分类:
其他好文 时间:
2014-08-27 20:10:38
阅读次数:
211
Problem Description
The students of the HEU are maneuvering for their military training.
The red army and the blue army are at war today. The blue army finds that Little A is the spy of the red ar...
分类:
其他好文 时间:
2014-08-27 18:50:28
阅读次数:
358
1、首先配置jwchat要具备的环境(我开发的环境)tomcat6.0jdk1.7openfire3.9.32.在网上查找下在jwchat.war文件,将其解压后放到tomcat目录下的webapps下3.下载xalan的xalan.jar,serializer.jar, xercesImpl.ja...
分类:
其他好文 时间:
2014-08-26 13:25:36
阅读次数:
268
4.0.0 com.aidress web war 1.0-SNAPSHOT AiDress Web Project http://maven.apache.org junit junit...
分类:
其他好文 时间:
2014-08-26 00:10:45
阅读次数:
405
There is a wise saying “Nothingis unfair in love and war”. Probably that is why emperors of ancient days usedto use many funny and clever
tricks to fool the opponents. The most commontechnique was t...
分类:
其他好文 时间:
2014-08-25 11:57:44
阅读次数:
210
weblogic上部署应用程序有三种方法:一:修改配置文件config.xml在文件中加入如下代码片段: FAB MS_BIS01 war D:\bea\user_projects\b_release\FAB ...
分类:
Web程序 时间:
2014-08-24 22:11:33
阅读次数:
460
题目链接题意 : 给你两个城市让你求最短距离,如果两个城市位于同一强连通分量中那距离为0.思路 :强连通分量缩点之后,求最短路。以前写过,总感觉记忆不深,这次自己敲完再写了一遍。 1 #include 2 #include 3 #include 4 #include 5 #incl...
分类:
移动开发 时间:
2014-08-24 22:05:23
阅读次数:
301