blank.war
If you want to start working with FireWeb Framework you can do this in two ways:
  1. Download ready to use blank.war and import it into your tool (eg. Eclipse). You can get it from here blank.war,
  2. or create WEB project in your tool and follow below two steps:
    1. Extend class org.fireweb.FireWebApplication.
      import org.fireweb.FireWebApplication;
      
      public class BlankApp extends FireWebApplication {
      
      	/**
      	 * Default constructor
      	 */
      	public BlankApp() {
      		/*
      		 * Simple text
      		 */
      		setText("Hello world !!! FireWeb is easy :)");
      	}
      
    2. Create web.xml file and configure org.fireweb.FireWebServlet.
      <?xml version="1.0" encoding="UTF-8"?>
      <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      	xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
      	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
      	id="WebApp_ID" version="3.0">
      	<display-name>blank</display-name>
      	<servlet>
      		<description>Blank FireWeb demo application</description>
      		<display-name>Blank FireWeb demo application</display-name>
      		<servlet-name>blank</servlet-name>
      		<servlet-class>org.fireweb.FireWebServlet</servlet-class>
      		<init-param>
      			<description>FireWeb class implemented application</description>
      			<param-name>class</param-name>
      			<param-value>org.fireweb.demo.blank.BlankApp</param-value>
      		</init-param>
      		<load-on-startup>1</load-on-startup>
      		<async-supported>true</async-supported>
      	</servlet>
      	<servlet-mapping>
      		<servlet-name>blank</servlet-name>
      		<url-pattern>/blank</url-pattern>
      	</servlet-mapping>
      	<welcome-file-list>
      		<welcome-file>blank</welcome-file>
      	</welcome-file-list>
      </web-app>
      
  3. Deploy at your server.
  4. Run it at eg. http://localhost:8080/blank

Your first FireWeb application is ready to use ...