Reshma Shanbhag

Ranch Hand
+ Follow
since Sep 17, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Reshma Shanbhag

Hello,

I am working towards 1Z0-813 certification. I have worked 7+ years in java and also have certification in Java 1.4. I have taken career break for last 6 years and working to get back to what i loved most, programming with Java.

I have been reading through several topics from 'Oracle Certified Professional Java SE 7 Programmer Exams 1Z0-804 and 1Z0-805: A Comprehensive OCPJP 7 Certification Guide by S G Ganesh  (Author), Tushar Sharma  (Author)'. This book is for 1Z0 - 805/1Z0-804.

I did go through few posts here in the OCPJP forum, but not much info shared about 1Z0-813 exam. It will be helpful to know how to prepare for the exam and what are the reference materials.

Thanks,
Reshma

Reshma Shanbhag wrote:Hello Everyone, I have started with the Preparation 1Z0-813. I would like to upgrade myself with the knowledge of Java 8. Is there anyone else who is in similar frame. It would be helpful to have a group.

Thanks,
Reshma



I have been reading

Oracle Certified Professional Java SE 7 Programmer Exams 1Z0-804 and 1Z0-805: A Comprehensive OCPJP 7 Certification Guide by S G Ganesh  (Author), Tushar Sharma  (Author)  

for a while now, it will be helpful to know what additional topics  need to studied to take up the 1Z0-813 certification.

Awaiting replies,

Thanks,
Reshma

chaitanya sarvepalli wrote:Hi All,
      I have cleared 1Z0-813 exam upgrading from Java6 to Java8. Initially I thought of waiting for Java9 exam, but 1Z0-813 is real worth in learning all the concepts related to Streams. Exam is little tough. So many questions almost 60-70% on Streams.  Too many programs and I was literally writing many programs with pen & paper whenever the answer contains compilation error or runtime exception. I have prepared only for a month as I am already using Java8 in current project and I want to take advantage (35% off before Dec 31st) of writing another exam by this year end. So I have restricted myself to finish this one quickly.

Preparations:
1. Enthuware Oracle Certified Professional - Upgrade To Java SE 8 From SE 6 Programmer Exam  --- Helped a lot.
2. OCP: Oracle Certified Professional Java SE 8 Programmer II Study Guide: Exam 1Z0-809

Suggestions:
1. Practice Enthuware test exams multiple times..
2. Stream and Collectors -- need to know method syntax and types like where we need to use BinaryOperator vs BiFunction
3. Ofcourse - Coderanch forum - but not many people posted regarding 1Z0-813.

Best of luck for everyone.



Chaitanya, Thank you for sharing your  experience. I am trying to take up 1Z0-813 and your post is helpful to get started with. Congratulations !
8 years ago
Hello Everyone, I have started with the Preparation 1Z0-813. I would like to upgrade myself with the knowledge of Java 8. Is there anyone else who is in similar frame. It would be helpful to have a group.

Thanks,
Reshma
Hi,

I am a newbie to Spring. I am working with a very basic application. The workflow is

1) CustomerDtls.html page collecting customer data i.e. name, email address, phone #
2.) on submitting the data, save it to the in memory database

I am testing the above with apache-tomcat-8.0.18 server with exploded directory deployment. Deployment no issues.

Below is my deployment Structure

<CustomerService>
------------------------META-INF

-------------------------static
----------------------------------CustomerDtls.html
----------------------------------ThankYou.html

-------------------------WEB-INF
------------------------------------classes
------------------------------------lib
------------------------------------spring
------------------------------------views
------------------------------------web.xml



in the web-inf/spring/servlet.context.xml i have the following configuration


<!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
<resources mapping="/resources/**" location="/resources/" />

<!-- Handles HTTP GET requests for /static/** by efficiently serving up static resources in the ${webappRoot}/static directory -->
<resources mapping="/static/**" location="/static/" />


<!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/WEB-INF/views/" />
<beans:property name="suffix" value=".jsp" />
</beans:bean>


I have a CustomerDtlsController.java as below



When i go to the browser and type http://localhost:8080/CustomerService/CustomerDtls.html, it does not load the .html page, workflow starts with CustomerDtlsController.customerFormSubmit() and displays an 404 message saying requested resource /views/static/ThankYou.html.jsp is not available.

i changed the static resource mapping from

<resources mapping="/static/**" location="/static/" />

to

<resources mapping="/*.html**" location="/static/" />

After doing the above change i am able to atleast load the ThankYou.html as http://localhost:8080/CustomerService/ThankYou.html, else would get 404 error message.

Below is what i want to know:

1.) CustomerDtls.html is a static file and i want to load it without dispatcher servlet routing it to CustomerDtlsController, on submit of the details the controller needs to be approached.
2.) If the view returned from controller is a plain .html file how do we configure it, so that view controller knows to look in WEB_ROOT/static folder and not WEB_INF/VIEWS


Please help me.

Best Regards,
REshma

10 years ago
Hello Ranchers,

I have given the SCJP1.4 and SCWCD1.4 certification previously. I have worked in java collectively for 5 years. I took a break from work, its been 5 five years now. I am wanting to return back to work and have started preparing for the upgrade exam 1Z0 - 805. I am referring Oracle Certified Professional Java SE 7 Programmer Exams 1Z0-804 and 1Z0-805: A Comprehensive OCPJP 7 Certification Guide (Expert's Voice in Java)

I need to practice more with code/dummy questions. Please let me know of good resources to help do well.

Best Regards,
Reshma
to get the attribute 'abc' this should do.

pageContext.getAttribute("abc",PageContext.APPLICATION_SCOPE)

this method call would return an object of type java.lang.Object, so be sure to cast it to type 'abc' explicitly.
[ June 27, 2006: Message edited by: Reshma Shanbhag ]
with JSP 2.0 <body-content> does not have a default value and is a mandatory element.

With simple tags the options you could have is 1.) scriptless 2.) tagdependent 3.) empty

with classic tag's the options would be 1.) scriptless 2.) tagdependent 3.) empty 4.) JSP


Hope that helps
Reshma
hi peter, thanks for the details, i was unaware. can you please give pointers as to what i could do?


What exam is the IBM 486 being replaced with??


Thanks,
Reshma
Thanks a ton for your suggestions Theodore Casser and Mukesh. You suggestions were helpful to me in deciding to go with IBM 486.


Thanks Again,
Reshma Shanbhag
[ June 20, 2006: Message edited by: Reshma Pai ]
Hi Everyone,

This is my first post on 'Product and Other Certifications ' forum.

I have been working with java/j2ee technologies and design patterns for some time now. OOAD has been my interest from long, though i have never really worked on it extensively.

I am planning for IBM 486. I am not sure how difficult the exam would be to me as i have not worked on OOAD. Is IBM 486 recommended certification for fresher of OOAD or are there other certification to start with OOAD.


I look forward for guidence from you, Thanks for your help.


Regards,
Reshma
Hi Ranchers,

Thanks to every one for your help. I took up my SCWCD 1.4 certification this morning, i scored 88%. The Coffe cream final mock previous night got me 72%.

A big thanks to the authors of HFSJ, thats the only book apart from spec i referred to give this exam.

I want to take up one more certification soon .. may be oracle or IBM UML .. any pointers to select the next certification path would be a great help. I have been with java for 4 yrs.


The SCWCD cert is finally done had been planning for this day from long ! Finally Done ! One more JAVA feather to my cap !

Cheers,
Reshma
[ June 19, 2006: Message edited by: Reshma Pai ]
Thanka Again Gaurav, i see couple of mock questions on security related mock q having this tag. Hence wanted to clarify.
Hi,

Is this aunt-constraint element valid ???

<auth-constraint>Admin</auth-constraint>

Reshma