abc
abc

Reputation: 1

how to configure struts in eclipse galileo?

i've included jars in class path and i've created struts-config in web-inf bt it is giving the following error:

servlet action is not available

Upvotes: 0

Views: 1511

Answers (1)

Ravinderpal Singh
Ravinderpal Singh

Reputation: 11

  • right click on project
  • select new ->
  • select servlet
  • while creating, select existing servlet
  • select superclass as ActionServlet
  • specify mapping as param name = config and param value = /web-inf/struts-config.xml
  • select name as action
  • edit url mapping as *.do

and go.....

Upvotes: 1

Related Questions