java:hotdeploymenteclipse
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
java:hotdeploymenteclipse [2014/05/17 18:08] – rlunaro | java:hotdeploymenteclipse [2022/12/02 21:02] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== The fastest way to make a deployment in eclipse ====== | ====== The fastest way to make a deployment in eclipse ====== | ||
+ | |||
+ | <WRAP center round info 60%> | ||
+ | **Update about Tomcat** | ||
+ | |||
+ | When I started this tutorial, I've found that every single change | ||
+ | in a web page under JBoss forces this to restart the application. | ||
+ | |||
+ | Unfortunately it is not the case with Tomcat: Tomcat ignores everything | ||
+ | else except web.xml, and this is a bit cumbersome if you are changing | ||
+ | jsf or jsp pages frequently, because these changes aren't detected | ||
+ | and refected by Tomcat. On the contrary, the pages appear unchanged. | ||
+ | |||
+ | With other J2EE servers I don't have an idea of what will happen.... | ||
+ | </ | ||
+ | |||
Although eclipse has a system to deploy applications to the application server of our choice (Tomcat, jboss, Web Sphere, etc.) I think that the system it uses is extremely slow. Other solutions that have appeared ([[http:// | Although eclipse has a system to deploy applications to the application server of our choice (Tomcat, jboss, Web Sphere, etc.) I think that the system it uses is extremely slow. Other solutions that have appeared ([[http:// | ||
Line 74: | Line 89: | ||
=== Jboss 5 and Windows XP === | === Jboss 5 and Windows XP === | ||
- | Working | + | Assumed you have the configuration of your project as described before, the only thing you have to do is create the symbolic link. |
+ | |||
+ | For this example, I've have my Jboss installation under '' | ||
+ | |||
+ | To make the symbolic link you need first to install '' | ||
+ | |||
+ | After installing, you should issue a command like this: | ||
+ | |||
+ | < | ||
+ | junction " | ||
+ | </ | ||
+ | |||
+ | == Start the business == | ||
+ | |||
+ | The only thing you have to do to start the application is the following: | ||
+ | |||
+ | * Please, before of everything, remove all the " | ||
+ | * Start the Jboss application server, manually, '' | ||
+ | * Start your eclipse application: | ||
+ | |||
+ | == Debugging == | ||
+ | |||
+ | **You can also debug your application.** To do so, edit the file '' | ||
+ | |||
+ | < | ||
+ | rem # Sample JPDA settings for remote socket debugging | ||
+ | set " | ||
+ | </ | ||
+ | |||
+ | This will make Jboss to hear from the port 8000 for debugging interruptions. Who will interrupt JBoss?? Properly configured, eclipse will do. | ||
+ | |||
+ | In your eclipse click on run -> debug configurations. Under " | ||
+ | |||
+ | {{: | ||
+ | |||
+ | Configure | ||
+ | |||
+ | {{: | ||
+ | |||
+ | Whenever you want to debug your application you only have to start the remote debug option you have created. This will make your application to stop in the step points you have set. | ||
=== Tomcat 6 and Linux === | === Tomcat 6 and Linux === | ||
+ | |||
+ | **Important: | ||
+ | |||
+ | <code xml> | ||
+ | <Context reloadable=" | ||
+ | </ | ||
+ | |||
+ | Also, as cited [[http:// | ||
Assumed you have the configuration of your project as described before, the only thing you have to do is create the symbolic link. | Assumed you have the configuration of your project as described before, the only thing you have to do is create the symbolic link. | ||
Line 92: | Line 154: | ||
Every time you want to run your application the only thing you have to do is: | Every time you want to run your application the only thing you have to do is: | ||
- | - Start Tomcat | + | - Start Tomcat |
- Start eclipse (Remember!!!! **Don' | - Start eclipse (Remember!!!! **Don' | ||
And that's it, because everytime you make a change in a class, or in a web page, it will be reflected automatically in tomcat. | And that's it, because everytime you make a change in a class, or in a web page, it will be reflected automatically in tomcat. | ||
+ | == Debug: Things you have to do the first time == | ||
+ | You can debug your application, | ||
+ | < | ||
+ | -Xrunjdwp: | ||
+ | </ | ||
+ | I've opened the file '' | ||
+ | <code shell> | ||
+ | if [ -z " | ||
+ | JAVA_OPTS=" | ||
+ | else | ||
+ | JAVA_OPTS=" | ||
+ | fi | ||
+ | < | ||
+ | and added the following: | ||
- | ~~DISQUS~~ | + | <code shell> |
+ | JAVA_OPTS=" | ||
+ | if [ -z " | ||
+ | JAVA_OPTS=" | ||
+ | else | ||
+ | JAVA_OPTS=" | ||
+ | fi | ||
+ | </ | ||
+ | And start Tomcat. | ||
+ | |||
+ | **For debug in eclipse,** open the "Debug configurations..." | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | And select " | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | And fill it with the following data: | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | ~~DISQUS~~ | ||
java/hotdeploymenteclipse.1400350094.txt.gz · Last modified: 2022/12/02 21:02 (external edit)