Package org.springframework.tests.sample.beans

Examples of org.springframework.tests.sample.beans.Pet


@ImportResource("org/springframework/test/context/junit4/profile/importresource/import.xml")
public class DefaultProfileConfig {

  @Bean
  public Pet pet() {
    return new Pet("Fido");
  }
View Full Code Here


@Configuration
public class DefaultProfileConfig {

  @Bean
  public Pet pet() {
    return new Pet("Fido");
  }
View Full Code Here

      return employee;
    }

    @Bean
    public Pet pet() {
      return new Pet("Fido");
    }
View Full Code Here

  @Configuration
  static class Config {

    @Bean
    public Pet pet() {
      return new Pet("Fido");
    }
View Full Code Here

  @Configuration
  static class ContextConfiguration {

    @Bean
    public Pet pet() {
      return new Pet("Fido");
    }
View Full Code Here

TOP

Related Classes of org.springframework.tests.sample.beans.Pet

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.