Submitted by heartin on Thu, 04/10/2014 - 21:10
You need to package your web application as a .war file to deploy it directly to Apache Tomcat. WAR stands for web archive. A different server might require a different format, for instance a glassfish server will need a .jar file whereas a websphere application server will require an .ear.
Installing and verifying a standalone Apache Tomcat
We will use a stand-alone tomcat for this example. Just download latest tomcat (.zip) version, unzip into a folder.
Submitted by heartin on Thu, 04/10/2014 - 12:06
We will create a simple JSP that prints "Hello World" in eclipse, deploy it and run it on the integrated tomcat.
Prerequesites
Configure apache tomcat with eclipse as mentioned in configuring-apache-tomcat-with-eclipse and start and stop tomcat server from the servers view of eclipse.
Submitted by heartin on Thu, 04/10/2014 - 11:45
We will create a simple servlet that prints "Hello World" in eclipse, deploy it and run it on the integrated tomcat.
Prerequesites
Configure apache tomcat with eclipse as mentioned in configuring-apache-tomcat-with-eclipse and start and stop tomcat server from the servers view of eclipse.
Submitted by heartin on Thu, 04/10/2014 - 10:32
Java servlets are Java’s technology for developing dynamic web applications. Technically, servlets are java classes that conform to the Java Servlet API. Servlet API allows java classes to respond to different types of requests; however, the most popular is HTTP requests.
Submitted by heartin on Wed, 04/09/2014 - 11:50
A software development process, also known as a software development life-cycle (SDLC) defines all the tasks required for developing and maintaining software. A software development methodology is a framework that is used to structure, plan, and control the software development process. Common methodologies include waterfall, prototyping, iterative and incremental development, spiral development, rapid application development and agile methodologies such as Scrum, Kanban and extreme programming (XP).
Pages