Curious about the future of data-driven systems? Join our Data Engineering roundtable and learn how to build scalable data platforms.
Data Engineering: The industry has come a long way from organizing unstructured data to adopting today's modern data pipelines. See how.
Senior BigData Engineer at Impetus Technologies
Saurabh Chhajed is a Senior Big Data Engineer, who enjoys exploring new technologies and applying them for good use. He is a Cloudera Certified Hadoop Developer and worked on many enterprise products for some of the largest banks and organizations in the US. He is a firm believer in open source and it's power in bringing the ongoing technology revolution. He writes articles on Java Technologies, Web, Opensource, and Big Data World.
Stats
| Reputation: | 157 |
| Pageviews: | 1.0M |
| Articles: | 9 |
| Comments: | 14 |
Comments
Sep 09, 2014 · Amit Mehra
Thanks for Sharing a great article Lieven !!
Aug 27, 2014 · Saurabh Chhajed
Basic Framework remains as ELK, but to streamline the messages we can use any broker like Redis/RabbitMQ etc. that's up to us.
Aug 27, 2014 · Saurabh Chhajed
Basic Framework remains as ELK, but to streamline the messages we can use any broker like Redis/RabbitMQ etc. that's up to us.
Aug 26, 2014 · Saurabh Chhajed
You have to separate out SwaggerConfig not to be loaded only on tests,Simple solution I have worked out is use @Profile("default") on
SwaggerConfig and have your tests run on Active Profile "test".This will block Swagger Configs to load when loading tests.
Let me know if you need further help.
Aug 26, 2014 · Saurabh Chhajed
You have to separate out SwaggerConfig not to be loaded only on tests,Simple solution I have worked out is use @Profile("default") on
SwaggerConfig and have your tests run on Active Profile "test".This will block Swagger Configs to load when loading tests.
Let me know if you need further help.
May 31, 2014 · Saurabh Chhajed
Thanks Miten Mehta !!
May 28, 2014 · Saurabh Chhajed
Yes Oleksandr, I agree with you on this.
May 28, 2014 · Saurabh Chhajed
Yes Oleksandr, I agree with you on this.
May 28, 2014 · Saurabh Chhajed
Yes Oleksandr, I agree with you on this.
May 26, 2014 · Mr B Loid
Hello Ankur,
Nice Article!! This proved to be a good help for us while choosing between these technologies.Few points we observed -
- Apache CXF was performing comparitively slower as compared to Axis2 and Spring WS for a sample implementation of one of our webservices.
- Spring WS always woked like charm, it was quick to setup, and quite fast as compared to other two.
- Good thing about Spring WS was it helped us eliminate the need to generate WSDL bound stubs for Service Interface using xjc utility which just required to generate stubs for Elements.
Thanks,SaurabhMay 26, 2014 · mitchp
Hello Ankur,
Nice Article!! This proved to be a good help for us while choosing between these technologies.Few points we observed -
- Apache CXF was performing comparitively slower as compared to Axis2 and Spring WS for a sample implementation of one of our webservices.
- Spring WS always woked like charm, it was quick to setup, and quite fast as compared to other two.
- Good thing about Spring WS was it helped us eliminate the need to generate WSDL bound stubs for Service Interface using xjc utility which just required to generate stubs for Elements.
Thanks,SaurabhMay 25, 2014 · Saurabh Chhajed
Having said that, String Interning is not always recommended at least till java version 6, since it stores them in PermGen Area and will not be GCed so may create memory leak issues and also it is necessary that you remember to intern all the strings that you are looking to compare in order to gain some performance gain, otherwise there could be consistency issues with your application.
Please let me know your thoughts.
May 25, 2014 · Saurabh Chhajed
Having said that, String Interning is not always recommended at least till java version 6, since it stores them in PermGen Area and will not be GCed so may create memory leak issues and also it is necessary that you remember to intern all the strings that you are looking to compare in order to gain some performance gain, otherwise there could be consistency issues with your application.
Please let me know your thoughts.
May 25, 2014 · Saurabh Chhajed
Having said that, String Interning is not always recommended at least till java version 6, since it stores them in PermGen Area and will not be GCed so may create memory leak issues and also it is necessary that you remember to intern all the strings that you are looking to compare in order to gain some performance gain, otherwise there could be consistency issues with your application.
Please let me know your thoughts.