Daya Moon

Greenhorn
+ Follow
since Aug 06, 2013
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
2
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Daya Moon


Jon Frowd wrote:In the question posed on page 433, aren't 9 objects created? Isn't the space character on the last line also a String object?

System.out.println(s1 + " " + s2);


Until
System.out.println() there will be 8 objects created.

Chapter 5. page 398.
line7th from the bottom
Using break and continue (Objective 2.2)
"An unlabeled break statement will cause the current iteration of the innermost looping construct to stop and, the line of code following the loop to run."
As break will exit the loop.
yes,
to import use
keytool -importcert -file your1st.crt -alias 1st.site.com -keystore TheKeyStore.keystore -storepass pass
keytool -importcert -file your2nd.crt -alias 2ndt.site.com -keystore TheKeyStore.keystore -storepass pass

to list the certificates
keytool -list -v -keystore TheKeyStore.keystore -storepass pass
10 years ago
you can edit the file located under ${catalina.home}/conf/logging.properties setting org.apache.catalina.core.ContainerBase.[Catalina].[localhost].level = FINE,
restart tomcat and then post the output? tomcat is not complaining about superfluous jars, but about missing tlds definitions and adjusting the log level will show you some more details
(it will show you where tomcat is looking for the missing tlds and a suggestion on how to solve your issue)
from http://stackoverflow.com/questions/14375673/tomcat-7-jsp-compiler-emits-unneeded-jar-warning
it was what helped me...
10 years ago