• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Integration Probs in Jdev 11g with Struts. Please Help

 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
HI All,

I am trying to make a trial application using Struts 10.3 in Jdev 11g.
I created the web application using Jdev wizard But didn't select Struts as Technology. Then I downloaded the Struts Jar files and copied them to the lib directory under WEB-INF directory in my sample applicatio.
But When I am trying to import org.apache.struts.action.ActionForm and extend ActionForm in my Bean I getting below error:
Error(2,32): package org.apache.struts.action does not exist
Error(3,36): cannot find symbol
My Bean is simple as below:

package projectname.nano.common;
import org.apache.struts.action.ActionForm;
public class InputFormBean extends ActionForm
{

}

Then I thought that compiler might not be able to integrate the copied jars. So I went Applications->Defalut Project Properties and include the lib directory of my application .
Still Probs persists. PLease help as I m stuck here.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic