• 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

sun one studio 4 update 1

 
Ranch Hand
Posts: 48
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
New to struts,
I am doing the hello world from struts kick start, I have mounted my struts lib directory with the following jars in it.
commons-beanutils-1.6.1.jar
commons-collections.jar
commons-dbcp.jar
commons-digester.jar
commons-logging.jar
commons-pool.jar
commons-services.jar
commons-validator.jar
jakarta-struts-1.1.jar
struts-1.1b2.jar

I keep getting this error when trying to compile HelloAction.java

HelloAction.java [9:1] package org.apache.struts.action does not exist
import org.apache.struts.action.Action;


Not sure what I am doing wrong. It should compile? I think?

[ October 27, 2003: Message edited by: Keith Lockey ]
 
Ranch Hand
Posts: 2676
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Check to see if jakarta-struts-1.1.jar and struts-1.1b2.jar both contain the same classes (as I suspect they might). If that is the case, remove one of them. I suspect that Eclipse is finding
org.apache.struts.action.Action in both jars and doesn't know which one to use.
 
reply
    Bookmark Topic Watch Topic
  • New Topic