tonyqu

Greenhorn
+ Follow
since Sep 02, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by tonyqu

If most ones of your team are not familar with Struts and no available Tutor for it, you should not take Struts as frameworks.
As you have said, MasterCraft is good one for your team. Maybe you can have a research on Struts first but not using it in this project.
Pros:
1.Open source framework
2.Good example for understanding J2EE Design Pattern
3.Excellent Tag lib
4.Make application more configrurable
5.Supported by many tools & popular IDEs
Cons:
1.Still in development
2.Taglibs are hard to grasp
3.Add complexity to application
If your team uses XP as process, you can hava a spike on it first. And then applying Pair Programming to teach blue ones.
Hope that it can help u!
[ February 26, 2003: Message edited by: tonyqu ]
21 years ago
You should view web.xml file to see servlet mapping configration.
For example:
<servlet>
<servlet-name>action</servlet-name>
<servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
</servlet>

<!-- Action Servlet Mapping -->
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>/Servlet/ActionServlet</url-pattern>
</servlet-mapping>
Then you can visit ActionServlet.class through the url "http://localhost/Servlet/ActionServlet"
Hope it can help you.
21 years ago