diff --git a/docs/javaBootcampNoEclipse.org b/docs/javaBootcampNoEclipse.org index b094a0a..a1acb14 100644 --- a/docs/javaBootcampNoEclipse.org +++ b/docs/javaBootcampNoEclipse.org @@ -164,7 +164,7 @@ *** Starting point A clean working brought up to date to include the two new files: - =${DEV_HOME}/source/java/org/gibiris/javaBootcampNoEclipse/AstroFun.java= + =${DEV_HOME}/source/java/org/gibiris/javaBootcampNoEclipse/Astro/AstroFun.java= and =${DEV_HOME}/source/lib/AstroLib-1.1.5ws.jar=, and an update to =${DEV_HOME}/source/java/org/gibiris/javaBootcampNoEclipse/MyHelloWorldServlet.java=. @@ -179,13 +179,17 @@ + =CLASSPATH= contains =tomcat8-servlet-api.jar= - Clean out the working area if there are unnecessary/unwanted files: : rm -vf ${DEV_HOME}/source/java/org/gibiris/javaBootcampNoEclipse/*.class + : rm -vf ${DEV_HOME}/source/java/org/gibiris/javaBootcampNoEclipse/Astro/*.class : rm -vf ${DEV_HOME}/source/lib/javaBootcampNoEclipse.?ar : rm -vfr ${DEV_HOME}/webapp - Review the changes that have been applied to the working area 1. Compile the java files (including the new java file) as per Lesson 1. - Does it compile? If not, why. Two hints: + Does it compile? If not, why. Three hints: + - there was a new sub-package added, + =org.gibiris.javaBootcampNoEclipse.Astro=, which your java + compiler needs to be able to find. - there was a new jar file introduced to the repository - there's a bug in the package specification in the new java file. Looking closely at the branches of this git repository,