http://www.minchu.net/blog/General/8/hot-deployment-from-eclipse
Here is the content from the above link.
Hot Deployment from Eclipse · Oct 8, 12:48 PM by Krishna Prasad V
If you are used to hot deployment for Tomcat using “My Eclipse”, then you dont have to go for a commercial plugin for Eclipse to do hot deployment! Surprised…? Configure your eclipse as below and see the results:
1. Download “File Sync” plugin from http://andrei.gmxhome.de/filesync/index.html
2. Download “Sysdeo Tomcat” plugin from http://www.sysdeo.com/eclipse/tomcatplugin
3. Install both the plugins in to your eclipse>>plugin directory (If you need help in installing, see the install guide provided for the plugins in their respective homepages)
4. Configure your File Sync to synchronize the files to your application deployed in Tomcat.
5. Hot Deployment configured!! Enjoy :)
Friday, August 28, 2009
Wednesday, August 26, 2009
Maven Archetypes for different kinds of projects.
http://docs.codehaus.org/display/MAVENUSER/Archetypes+List
Monday, August 24, 2009
Agile: Vertical Slicing vs. Horizontal Slicing.
http://agilewarrior.wordpress.com/2009/07/27/horizontal-vs-vertical-slicing/
Friday, August 14, 2009
Thursday, August 13, 2009
Oracle: Query to Eliminate Duplicates.
DELETE FROM TABLE A
WHERE rowid not in
(SELECT MIN(rowid)
FROM TABLE A
GROUP BY se3_account_nbr);
WHERE rowid not in
(SELECT MIN(rowid)
FROM TABLE A
GROUP BY se3_account_nbr);
Oracle: How to update using select.
UPDATE TABLE A
12 SET (A.address_1,
13 A.address_2,
14 A.address_3,
15 A.city,
16 A.state_code,
17 A.country_code,
18 A.zip,
19 A.zip_4) =
20 (SELECT ADDRESS_1, ADDRESS_2, ADDRESS_3, CITY, STATE_CODE, COUNTRY_CODE, ZIP, ZIP_4 FROM TABLE B
21 WHERE account_nbr=A.account_nbr AND ROWNUM =1)
22 WHERE EXISTS (SELECT 1 FROM TABLE B CCA WHERE CCA.account_nbr = TABLE A.account_nbr);
12 SET (A.address_1,
13 A.address_2,
14 A.address_3,
15 A.city,
16 A.state_code,
17 A.country_code,
18 A.zip,
19 A.zip_4) =
20 (SELECT ADDRESS_1, ADDRESS_2, ADDRESS_3, CITY, STATE_CODE, COUNTRY_CODE, ZIP, ZIP_4 FROM TABLE B
21 WHERE account_nbr=A.account_nbr AND ROWNUM =1)
22 WHERE EXISTS (SELECT 1 FROM TABLE B CCA WHERE CCA.account_nbr = TABLE A.account_nbr);
Subscribe to:
Comments (Atom)