Initial (generated) project
This commit is contained in:
commit
13011b536a
19 changed files with 466 additions and 0 deletions
1
war/WEB-INF/.gitignore
vendored
Normal file
1
war/WEB-INF/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/classes/
|
BIN
war/WEB-INF/lib/gwt-servlet.jar
Normal file
BIN
war/WEB-INF/lib/gwt-servlet.jar
Normal file
Binary file not shown.
24
war/WEB-INF/web.xml
Normal file
24
war/WEB-INF/web.xml
Normal file
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
|
||||
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
|
||||
version="2.5"
|
||||
xmlns="http://java.sun.com/xml/ns/javaee">
|
||||
|
||||
<!-- Servlets -->
|
||||
<servlet>
|
||||
<servlet-name>greetServlet</servlet-name>
|
||||
<servlet-class>net.molez.mandlm.fotostream.server.GreetingServiceImpl</servlet-class>
|
||||
</servlet>
|
||||
|
||||
<servlet-mapping>
|
||||
<servlet-name>greetServlet</servlet-name>
|
||||
<url-pattern>/fotostream/greet</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
<!-- Default page to serve -->
|
||||
<welcome-file-list>
|
||||
<welcome-file>FotoStream.html</welcome-file>
|
||||
</welcome-file-list>
|
||||
|
||||
</web-app>
|
Loading…
Add table
Add a link
Reference in a new issue