Saturday, November 30, 2013
Q
Thursday, November 28, 2013
Q
POORNAAT POORNAMUDACHYATE
POORNASYA POORNAMAADAAYA
POORNAMEVAAVASHISHYATE
OM SHANTI SHANTI SHANTIH
THIS (CREATION) IS ALSO WHOLE
FROM THAT WHOLE (I.E. BRAHMAN ONLY)
THIS WHOLE HAS COME OUT (CREATION)
BUT EVEN THOUGH THIS WHOLE HAS COME
OUT OF THAT WHOLE
YET THAT WHOLE REMAINS WHOLE ONLY
Wednesday, November 27, 2013
Q
Tuesday, October 22, 2013
Q
--Ravishankar (saint)
Monday, September 30, 2013
Saturday, September 28, 2013
Wednesday, September 18, 2013
Q
... A dream you dream together is reality." ☻
Friday, September 13, 2013
Q
यागुम सर्व भूतानि चराणि स्थावराणि च,
प्रातर नमस्यन्तु सद्याभीरक्षतु !!
Friday, September 6, 2013
Q
J Krishnamurti *
Friday, August 23, 2013
Friday, May 24, 2013
True abt indians??
Few days back we had to buy samsung galaxy grand, the admin had called the retailer to the company and he was quoting 23+ K. OMG! on flipkart.com u get it for 19+K. Is it that the admin is not bothered? but this is all what they are supposed to do.
Today i came to know.. that people here get their flight tickets booked at 1.5 Lakhs while it wouldnt cost more than 1.+ Lakhs rupees if u visit the airliner website and do the booking. What is all this? aren't they craving for commissions?
I somehow feel its in our bood... the corruption and being dishonest.. what do u think?
Friday, April 26, 2013
Wednesday, February 27, 2013
Q
రక్షణలు వేయి కలిగిన సిక్షితుడగు ఖలుడు పాప చిత్తున్ డగుటన్ !!
-బమ్మెర పోతన
Saturday, February 9, 2013
Friday, February 8, 2013
Wednesday, February 6, 2013
Spring register a new JSON Converter
Yesterday I had to modify the JSON during creation from an object. I want to add validation hints along with the json that travelled to the server. Spring has converters and uses MappingJacksonHttpMessageConverter to convert the object returned by the controller. SO i want to modify the converter to include the hints in the JSON generated.
A lot of googling happened for no luck finally I got the solution which reads as follows
First override the default handler: MappingJsonHttpMessageConverter
public class JSONHttpMessageConverter extends MappingJacksonHttpMessageConverter {
…
…
@Override
protected void writeInternal(Object object, HttpOutputMessage outputMessage) throws IOException,
HttpMessageNotWritableException {
now in spring xml modify the mvc:annotation-config; Please make sure that u dont have another annotation-config with in any of the spring xmls in ur classpath.
<mvc:annotation-driven validator="ExtendedValidatationAdaptor" >
<mvc:message-converters register-defaults="true" >
<bean class="wavecrest.foundation.validate.web.JSONHttpMessageConverter" p:somebean-ref="somref" />
</mvc:message-converters>
</mvc:annotation-driven>
and this should do.
Tested with spring-web-3.1.1.RELEASE.jar
Monday, January 21, 2013
eclipse tomcat startup: Reveal end of document error( internal Error)
I am not sure if this is the root cause, however when i do the below the error is gone….
- restart eclipse; right click inn console; go to preferences
- make sure u select the below options and as these are
if u unselect the checkbox: limit console output and if u r console generates a lot of print stmts u get the error.