Java

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • rsrinivasan
    New Member
    • Mar 2007
    • 221

    #1

    Java

    Hi
    I have an error message that is "HttpServletReq uest cannot be resolved to a type" in an Action class. But the application runs without any error. What is the problem..

    Thanks,
    Srinivasan R.
  • JosAH
    Recognized Expert MVP
    • Mar 2007
    • 11453

    #2
    Originally posted by rsrinivasan
    Hi
    I have an error message that is "HttpServletReq uest cannot be resolved to a type" in an Action class. But the application runs without any error. What is the problem..

    Thanks,
    Srinivasan R.
    If your compiler whines that bad, it doesn't generate a .class file for that source
    file. If your application still runs "fine" (mind the quotes) that implies that that
    particular class isn't needed by your application or a previous .class file still
    exists somewhere. I suggest a clean build, i.e. throw away all the .class files
    and rebuild your entire application.

    kind regards,

    Jos

    Comment

    Working...