Raj Kumar Bindal

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

Recent posts by Raj Kumar Bindal

Last Saturday(19th April) i appeared for core Spring V3.2 certification exam and cleared with 88%.

Here is the material that i used:

1. http://www.selikoff.net/2010/08/20/jeannes-core-spring-3-certification-experiences/: Jeanne has provided excellent notes for the certification. These were my starting point.
2. http://arnosthavelka.github.io/spring-cert/index.html#! :These are also very good notes.
3. http://itestjava.com/java-certification-practice-tests/product/enter.do?product=SPRING-CORE: Purchased mock exam from itest. Some questions in these tests were out of scope. But, it gave a good learning practice for the certification.
4. Skill Guru: Purchased mock exam from here and still few questions were out of scope but still it gave a good idea of the questions.
I attended that in india so it was 53K rupess. I gave 50K just as a round figure.
10 years ago
I attended the Spring Certification training in December but i have still not received the exam voucher. I called VMWare team multiple times and sent them multiple emails(created atleast 7-8 tickets) but they are saying that your class is not closed and then they are saying we are short of exam vouchers.
Now, finally they are saying, we will give you exam voucher whenever it is available with us without giving me any date by which i will expect the voucher.
I haven't encountered such kind of issue with other Sun, Oracle, PMP certifications.
It is really irritating that they take 50K and then they say just keep on waiting for the voucher.
Probably i will not go for any other Spring certification exam after this.
But as i already paid 50K i need to appear for this. Can somebody tell me what should i do to get the Spring Voucher?
10 years ago
I saw on net that books for OCMJEA 7 are available in market but looking at this forum and other ocmjea forums, i found that most of the people are still doing OCMJEA 5 or OCMJEA 6. Can somebody please suggest if i should prepare for OCMJEA 7. If yes, can somebody please tell the preferred books for OCMJEA 7.

Below is the link for OCMJEA book:
http://www.amazon.com/Oracle-Certified-Master-Enterprise-Architect/dp/1430250011/ref=pd_sim_b_4
I am using Spring 3.2 and saw that autowire="autodetect" have been removed from Spring3.2. Can anybody tell the reason for this?
Only five values work for autowire attribute= byName, byType, constructor, default, no.
10 years ago
All log messages of my Spring application are currently going in a single log file. But, i need to write the log statements of one specific java class in another log file. Can anyone please tell how to do this?
Hi,
I am trying to set java_opts having values with spaces in catalina.sh. I am trying this in unix. Can, somebody tell how we set java_opts with spaces in catalina.sh. I tried below and it doesn't work.
JAVA_OPTS="$JAVA_OPTS "-DargumentA=0 0 12 * * ?""
10 years ago
Hi,
I have written code using spring quartz scheduler and it is working fine. But, in that i have specified value of cron expression in applicationcontext.xml. So, i now need to read the value of CronExpression from properties file so that if we need to change the time of execution, we can just change properties file and restart the server.
<bean id="CronTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">
<property name="jobDetail" ref="CronJob" />
<property name="cronExpression" value="0 0 3 * * ?" />
</bean>

I can't do
<bean id="CronTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">
<property name="jobDetail" ref="CronJob" />
<property name="cronExpression" value="{cronExpression}" />
</bean>
because i don't have control over CronTriggerBean as it provided by Spring.

So, can anyone please tell how we can read the value of cronExpression from properties file.

--Raj
10 years ago
Can anyone suggest any solution for this problem please.
Hi,
I am not able to get count of distinct of 2 columns using hql.
This is the query:
select count ( distinct emp.id ||','|| emp.name ) from com.Employee emp

This exception is coming when i am execuing it:

2013-05-21T13:51:19.829+0530 ERROR line 1:33: expecting CLOSE, found '||'
2013-05-21T13:51:19.834+0530 DEBUG line 1:33: expecting CLOSE, found '||'
line 1:33: expecting CLOSE, found '||'
at antlr.Parser.match(Parser.java:211)
at org.hibernate.hql.antlr.HqlBaseParser.aggregate(HqlBaseParser.java:4401)
at org.hibernate.hql.antlr.HqlBaseParser.identPrimary(HqlBaseParser.java:4052)
at org.hibernate.hql.antlr.HqlBaseParser.primaryExpression(HqlBaseParser.java:861)
at org.hibernate.hql.antlr.HqlBaseParser.atom(HqlBaseParser.java:3438)
at org.hibernate.hql.antlr.HqlBaseParser.unaryExpression(HqlBaseParser.java:3216)
at org.hibernate.hql.antlr.HqlBaseParser.multiplyExpression(HqlBaseParser.java:3098)
at org.hibernate.hql.antlr.HqlBaseParser.additiveExpression(HqlBaseParser.java:2818)


Can somebody please tell the solution for this.
Ok, i am now planning to create UML diagrams myself. I believe we can install some pluggins in eclipse after which we can create UML diagrams through eclipse.

Please let me know the pluggin which i can use for making UML diagrams in eclipse.
Hi,

I have written some piece of code in eclipse. Now, i need to generate UML diagrams for that code. Please let me if it is possible in eclipse to just select particular project/package and generate sequence diagrams/class diagrams as per the classes present in that project/package.

I am looking for an open source pluggin. I know we have EMF and UML2 pluggins for eclipse but i think even if we have those pluggins, we still have to understand relationship between the classes and connect the classes accordingly in UML diagrams.

Just wanted to know if any open source pluggin is available which will reduce my effort and will generate UML diagrams by just selecting a project/package.

Thanks in advance.
Ok thanks. I am planning to implement Merge functionality myself.
Hi all,

I need help on this urgently. Please tell me how to use merge with two databases.