initial commit
This commit is contained in:
28
target/JakiWiki-1.0-SNAPSHOT/WEB-INF/web.xml
Normal file
28
target/JakiWiki-1.0-SNAPSHOT/WEB-INF/web.xml
Normal file
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" 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">
|
||||
<display-name>JakiWiki</display-name>
|
||||
<description>JakiWiki, un wiki in Java</description>
|
||||
|
||||
<servlet>
|
||||
<servlet-name>MainController</servlet-name>
|
||||
<servlet-class>it.jee_book.jakiwiki.servlet.MainController</servlet-class>
|
||||
</servlet>
|
||||
|
||||
<servlet-mapping>
|
||||
<servlet-name>MainController</servlet-name>
|
||||
<url-pattern>*.action</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
<ejb-local-ref>
|
||||
<ejb-ref-name>ejb/PaginaManager</ejb-ref-name>
|
||||
<ejb-ref-type>Session</ejb-ref-type>
|
||||
<local>it.jee_book.jakiwiki.business.pagine.PaginaManager</local>
|
||||
</ejb-local-ref>
|
||||
|
||||
<ejb-local-ref>
|
||||
<ejb-ref-name>ejb/EmailManager</ejb-ref-name>
|
||||
<ejb-ref-type>Session</ejb-ref-type>
|
||||
<local>it.jee_book.jakiwiki.business.email.EmailManager</local>
|
||||
</ejb-local-ref>
|
||||
|
||||
</web-app>
|
||||
Reference in New Issue
Block a user