• 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

HF p176 example compile error

 
Ranch Hand
Posts: 61
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Maybe there is a typo in my code, but my codes are compiled without error.
I got this error msg when i try to run the example.

Thanks

 
Ranch Hand
Posts: 51
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
you want to paste yr servlet code here? clearly the container is calling service() and service can't find doGet()

your servlet will compile with doGet() "incorrectly" over-riddden : there's no law against that.
 
Cowgirl and Author
Posts: 1589
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello Ming,
I think I need a little more info as well... there isn't any code on page 176, so I'm not sure exactly where your issue is.

Thanks!!
-Kathy
 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I got compile errors as below:

D:\tomcat\webapps\listenerTest\classes\com\example\ListenerTester.java:11: cannot resolve symbol
symbol : class Dog
location: class com.example.ListenerTester
Dog dog= (Dog) getServletContext().getAttribute("dog");
^
D:\tomcat\webapps\listenerTest\classes\com\example\ListenerTester.java:11: cannot resolve symbol
symbol : class Dog
location: class com.example.ListenerTester
Dog dog= (Dog) getServletContext().getAttribute("dog");
^
2 errors

Any one can help?
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic