VOOZH about

URL: https://www.javacodegeeks.com/author/Biju-Kunjummen/page/21

⇱ Biju Kunjummen, Author at Java Code Geeks - Page 21 of 23


  • Enterprise Java👁 spring-interview-questions-answers
    Biju KunjummenNovember 20th, 2012
    1 595

    Polling an http end point using Spring Integration

    It is a little non-intuitive if you want to write a flow with Spring Integration which polls an http end point…

    Read More »
  • Enterprise Java👁 spring-interview-questions-answers
    Biju KunjummenNovember 1st, 2012
    0 274

    Method Parameter Names and Spring

    Continuing on the previous blog entry about Constructor and method parameters and Java not retaining the parameter names at runtime –…

    Read More »
  • Enterprise Java👁 spring-interview-questions-answers
    Biju KunjummenOctober 29th, 2012
    1 279

    Spring Constructor Injection and Argument names

    At runtime, java classes do not retain the name of the constructor or method parameters, unless classes are compiled with…

    Read More »
  • Enterprise Java👁 spring-interview-questions-answers
    Biju KunjummenOctober 15th, 2012
    0 369

    Spring Collection Merging

    Spring collection merging is a feature that I first came across as an answer to a StackOverflow question It is…

    Read More »
  • Enterprise Java👁 spring-interview-questions-answers
    Biju KunjummenSeptember 25th, 2012
    5 259

    Spring Testing Support and Context caching

    Spring provides a comprehensive support for unit and integration testing – through annotations to load up a Spring application context,…

    Read More »
  • Core Java👁 Image
    Biju KunjummenSeptember 16th, 2012
    2 519

    Java Annotations – Retention

    Consider a Java annotation: public @interface AnAnnotaton { } A class with this annotation applied on it: @AnAnnotaton class AnAnnotatedClass{…

    Read More »
  • Enterprise Java👁 spring-interview-questions-answers
    Biju KunjummenSeptember 6th, 2012
    0 281

    Wire object dependencies outside a Spring Container

    There are a few interesting ways of setting the properties and dependencies of an object instantiated outside of a Spring…

    Read More »
  • Enterprise Java👁 spring-interview-questions-answers
    Biju KunjummenAugust 28th, 2012
    0 167

    Spring Scoped Proxy

    Consider two Spring beans defined this way: @Component class SingletonScopedBean{ @Autowired private PrototypeScopedBean prototypeScopedBean; public String getState(){ return this.prototypeScopedBean.getState(); }…

    Read More »
  • Enterprise Java👁 spring-interview-questions-answers
    Biju KunjummenAugust 16th, 2012
    0 183

    Spring @Configuration and FactoryBean

    Consider a FactoryBean for defining a cache using a Spring configuration file: <cache:annotation-driven /> <context:component-scan base-package='org.bk.samples.cachexml'></context:component-scan> <bean id='cacheManager' class='org.springframework.cache.support.SimpleCacheManager'> <property…

    Read More »
  • First
  • ...
  • 10
  • «
  • 20
  • 21
  • 22
  • »
  • ...
  • Last
Back to top button
Close