ChinaUnix.net
相关文章推荐:

maven tomcat eclipse debug

maven 将作为一个普通的构建系统,被人们重新认识,并且它将超越 Java技术。本文不打算成为一篇 maven 教程,而是将 maven 与其他技术进行比较,让您洞察 maveneclipse 相适应的地方,以及如何使这些工具相互协作。      在过去几年中,maven 已经不仅仅是 Java 世界的一个时髦话题。自 2001 年起,maven 已经成为构建工具领域的先驱。最近几年,人们常拿它与 Ant 比较。因为 maven 与 Ant 有一些显而易见的相似之处,所以...

by EricJava - Java文档中心 - 2006-11-10 14:27:04 阅读(515) 回复(0)

相关讨论

tomcat can startup for remote debug, just set a little parameters and environment variables as follows: set JPDA_ADDRESS=8000 set JPDA_TRANSPORT=dt_socket catalina jpda start the tomcat faq document also said that you can pass these parameters to the JVM, "-Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n" , i tried, it didn't work out. so i'll just use first method . 本文...

by wangsong2 - Java文档中心 - 2006-03-17 17:58:23 阅读(1751) 回复(0)

我用eclipse build后启动tomcat,出现这个界面(进入debug模式,我什么也没有设置): 写一步份debug显示代码: tomcat 5.x[Java Application] org.apache.catalina.startup.Bootstrap at localhost:3695 Thead [main] (Suspend (exception NullPointException)) StandardContext.start() line:4085 .............. 请问怎么把这个去掉, 我不想让它debug,我想启动tomcat后,通过就可以访问http://localhost:8080/了,...

by liu121027 - Java - 2006-04-11 09:51:47 阅读(951) 回复(7)

我在eclipse中写了一个很简单的java程序: public class HelloWorld { public static void main(String[] args) { System.out.println("abc"); System.out.println("abc"); } } ///:~ 我在第一个println处设置了断点,然后启动debug。可我发现此时debug操作中,step over,step out, pause, resume等都是禁用的!只有run to line可以使用,这是怎么回事?

by webcraft - Java - 2004-08-05 10:40:55 阅读(1339) 回复(1)

安装: Windows 2000/XP Unzip the distribution archive, i.e. apache-maven-2.0.10-bin.zip to the directory you wish to install maven 2.0.10. These instructions assume you chose C:\Program Files\Apache Software Foundation. The subdirectory apache-maven-2.0.10 will be created from the archive. Add the M2_HOME environment variable by opening up the system properties (WinKey + Pause), selecting the "Ad...

by 破壳成龙 - Java文档中心 - 2009-06-17 11:54:18 阅读(1950) 回复(0)

昨天安装maven2.6之后出现了一个问题.在eclipse control出现如下问题.并且我的JDK环境配置都是对的.. 每次开eclipse后都会出现下面的问题 4/19/08 2:40:55 PM PDT: eclipse is running in a JRE, but a JDK is required Some maven plugins may not work when importing projects or updating source folders. 解决办法 打到Shortcut eclipse-->properties--->ShortCut--->Target 加上JDK D:\eclipse\eclipse.exe -vm "...

by jeantian - Java文档中心 - 2008-04-21 11:21:12 阅读(806) 回复(0)

对于eclipsetomcat的安装与使用,现在总结一下 1. 在eclipse中默认编译的,SRC的目录如下 Seller/build --> 编译存放的目录 /SRC /WebContent/WEB-INF 2. 要将Web 应用发布到tomcat中。必须把WebContent和build中目录打成包,放进如下文件结构中 Seller/WebContent/index.jsp web.xml /WEB-INF/classes --> 将build中编译好的文件移入classes中 3. 我使用ant 进...

by johndoe - Java文档中心 - 2006-12-23 11:48:34 阅读(701) 回复(0)

一阵子没用eclipse了,今天在里面启动tomcat的时候发现启动失败。 显示: log4j:WARN No appenders could be found for logger (org.apache.catalina.startup.Embedded). log4j:WARN Please initialize the log4j system properly. 据说这可以忽略,但是这样就浏览器打不开的亚。谢谢。

by jennyjennyjenny - Java - 2006-05-14 17:56:22 阅读(780) 回复(1)

我照着书说的去做,可书上介绍的是eclipse3.0版本eclipse3.1.2版本,所以有些不同,不知道该怎么做,请大家帮一下忙。 我现在已把tomcatpluginV31.zip解压放到了eclipse安装目录下的\plugins下 但在eclipse的“窗口”->“定制透视图”时出现的窗口同书上的不一样。

by 末代地主 - Java - 2006-03-26 21:50:32 阅读(946) 回复(1)

小弟配了一个上午的eclipse+tomcat都没成功,就是把com.sysdeo.eclipse.tomcat_3.1.0插件放到 eclipse的plugins目录下后,在“Window”菜单的“Customize Perspective…”里看不到tomcat,这是什么原因呢, eclipse版本为3.1.2 tomcat版本为5.5.16 先谢谢各位了!!!

by wypdao - 服务器应用 - 2006-03-28 21:45:59 阅读(999) 回复(1)

请问一下如何弄一个在eclipse中写程序JAVAC后不用到tomcat管理界面中reload应用程序的环境,thx

by xiao_i - Java - 2004-11-08 16:05:52 阅读(500) 回复(0)