|
What this is
Other links
The source code<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN" "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd"> <struts-config> <form-beans/> <global-forwards> <forward name="userlogin" path="/mvnplugin/mvnforum/user/login.jsp"/> <forward name="index" redirect="false" path="/mvnplugin/mvnforum/user/index.jsp"/> </global-forwards> <action-mappings> <action path="/index" type="com.mvnforum.actions.IndexAction" unknown="false"/> <action path="/listrecentthreads" type="com.mvnforum.actions.ListRecentThreadsAction"> <forward name="success" redirect="false" path="/mvnplugin/mvnforum/user/listrecentthreads.jsp"/> </action> <action path="/loginprocess" type="com.mvnforum.actions.LoginProcessAction"> <forward name="loggedin" redirect="true" path="/mvnforum/index" contextRelative="false"/> </action> <action path="/logout" type="com.mvnforum.actions.LogoutAction"> <forward name="loggedout" path="/mvnforum/index" redirect="true"/> </action> <action path="/listforums" type="com.mvnforum.actions.ListForumsAction"> <forward name="success" path="/mvnplugin/mvnforum/user/listforums.jsp" redirect="false"/> </action> <action path="/conversion" forward="/mvnplugin/mvnforum/struts_conversion_warning.html" unknown="true"/> <action path="/login" forward="/mvnplugin/mvnforum/user/login.jsp"/> <action path="/listonlineusers" type="com.mvnforum.actions.WhoseOnlineAction"> <forward name="listonlineusers" path="/mvnplugin/mvnforum/user/listonlineusers.jsp" redirect="false"/> </action> </action-mappings> <!-- <controller> <set-property property="inputForward" value="true"/> </controller> --> </struts-config> |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.