• 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

Compiler error in Action class - configuring data source in struts-config.xml. Please help!

 
Ranch Hand
Posts: 115
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This is my Action class, "LoginAction.java"



Compiler error in line 1 in the above class, "The method getDataSource(HttpServletRequest) is undefined for the type LoginAction"

here is my struts-config.xml
----------------------------------



I added the jars, "commons-dbcp-1.4.jar" and "commons-pool-1.4.jar" the the eclipse build path, and /WEB-INF/lib
also to the tomcat(6.0.26)'s /WEB-INF/lib

Can anyone tell me why iam getting this compiler error in line 1 and also how to rectify the same?
 
Author
Posts: 12617
IntelliJ IDE Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Did you look at the Javadocs for Struts 1.3 actions? I'd recommend that you do.
 
Anuradha Prasanna
Ranch Hand
Posts: 115
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
can you please be more specific.
I would appreciate if somebody can explain with a simple example, how to configure datasources in struts 1.3.8.(as iam new to struts)
Iam using tomcat 6.
 
David Newton
Author
Posts: 12617
IntelliJ IDE Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Outside of Struts. People generally use JNDI, Spring, Hibernate, etc.

A simple search, even just here on JavaRanch, would turn things like this up:

https://coderanch.com/t/58897/Struts/Application-Frameworks/Struts-Data-Source
https://coderanch.com/t/55621/Struts/Application-Frameworks/struts-with-datasource
reply
    Bookmark Topic Watch Topic
  • New Topic