|
Sponsored Links
Resources
Enterprise Java Research Library
Get Java white papers, product information, case studies and webcasts
|
EJB design
EJB design
EJB design
|
Messages: 1
Messages: 1
Messages: 1
Printer friendly
Printer friendly
Printer friendly
Post reply
Post reply
Post reply
XML
XML
XML
|
 |
how to reload my aplication with out restarting my jboss server
Hi,
I need the finest way to reload my application whaen i am changing any class files or jsps. I am using jboss 4.1.sp.
|
|
Message #208182
Post reply
Post reply
Post reply
Go to top
Go to top
Go to top
|
 |
how to reload my aplication with out restarting my jboss server
1.You can use http://localhost:8080/jmx-console/ to do it manually
2.Or a simple ant script (for unix):
...... <property name="project.name" value="YOUR_PROJECT"/> <property name="jboss.user" value="admin"/> <property name="jboss.password" value="PASSWORD"/> <property name="jboss.adminUrl" value="http://localhost:8080/jmx-console/HtmlAdaptor?action=invokeOp&name=jboss.web:j2eeType=WebModule,name=//localhost/${project.name},J2EEApplication=none,J2EEServer=none"/> ...... <target name="reload" description="Reload web application">^ <exec executable="wget">^ <arg value="--http-user=${jboss.user}"/>^ <arg value="--http-passwd=${jboss.password}"/>^ <arg value="--output-document=/dev/null"/>^ <arg value="${jboss.adminUrl}&methodIndex=2"/>^ </exec>^ </target>^
<target name="start" description="Start web application"> <exec executable="wget"> <arg value="--http-user=${jboss.user}"/> <arg value="--http-passwd=${jboss.password}"/> <arg value="--output-document=/dev/null"/> <arg value="${jboss.adminUrl}&methodIndex=4"/> </exec> </target>
<target name="stop" description="Stop web application"> <exec executable="wget"> <arg value="--http-user=${jboss.user}"/> <arg value="--http-passwd=${jboss.password}"/> <arg value="--output-document=/dev/null"/> <arg value="${jboss.adminUrl}&methodIndex=5"/> </exec> </target>
|
|
 |
Hot threads
Hot threads
Hot threads
|
More hot threads
More hot threads
More hot threads
|
 |
Brian Goetz continues to lift the lid and peak into the inner workings of Java in Java Urban Performance Legends. In this article he exposes the fallacy behind some of the more common performance myths found in the annals of the JVM.
(93 comments,
last posted
February 06, 2009)
Bruce Tate, author of Better, Faster Lighter Java and Bitter EJB has come out with a new book called Beyond Java. Bruce has an epiphany about the future of software development. Does it include Java?
(770 comments,
last posted
September 23, 2009)
Looks like today AJAX concept have several interpretations. We can distinguish different approaches of AJAX integration. Can they co-exist within the same application? Can we talk about layered AJAX integration?
(68 comments,
last posted
May 08, 2008)
Artima has published a short article describing the Design-Time API for JavaBeans, which was recently approved as JSR 273. This API promises to bring VB-like ease to Java development, but may face a cultural bias among Java developers who tend to think more in terms of class libraries than components.
(225 comments,
last posted
November 19, 2009)
There is plenty of speculation today regarding a potential buyout of Sun Microsystems by Scott McNealy and Silver Lake Partners. How would privatization of Sun affect Java?
(16 comments,
last posted
May 15, 2009)
More hot threads »
|
|