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

problem persists

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
i had posted my problem earlier
the answer that i got was


Also include F:\project\Beer-v1\classes to the classpath.

but still my servlet isn't compiling


-----------------------------------------------------------------
i have the book for SCWCD (head first servlets & jsp)

in chapter 3 of the book on pg-84,85
the servlet version 2 is given and i have compilation problems with it

i have done all the necessary things

the servlet version 1 is running fine

i have this directory in windows vista

F:\project\Beer-v1\src\com\example\model (have BeerExpert.java)
and
F:\project\Beer-v1\src\com\example\web (have BeerSelect.java)

as given in the book
my classpath is also set fine and all the programs are running fine(servlets and other java programs)

but compilation problem is there for BeerSelect.java

when i do


F:\project\Beer-v1\src\com\example\web>javac -cp "c:\Program files\Apache Software Foundation\Tomcat 6.0\lib\servlet-api.jar" BeerSelect.java

following thing is shown

BeerSelect.java:3: package com.example.model does not exist
import com.example.model.*;
^
BeerSelect.java:19: cannot find symbol
symbol : class BeerExpert
location: class com.example.BeerSelect
BeerExpert be = new BeerExpert();
^
BeerSelect.java:19: cannot find symbol
symbol : class BeerExpert
location: class com.example.BeerSelect
BeerExpert be = new BeerExpert();
^

3 errors
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Please continue the discussion in the original thread rather than opening a new one.
 
Eliminate 95% of the weeds in your lawn by mowing 3 inches or higher. Then plant tiny ads:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
    Bookmark Topic Watch Topic
  • New Topic