From 62a72431ad53c5cb24cf50fd27e511fb314751c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ibhear=20=C3=93=20hAnluain?= Date: Sat, 12 Aug 2017 22:10:40 +0100 Subject: [PATCH] Completing Lesson 5 --- docs/javaBootcampNoEclipse.org | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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,