Springの起動引数でBeanを切り替えたい 切り替え対象のBeanが実装するインターフェース package hello; public interface GreedInterface { public String greed(); } 実装クラス。@Profileアノテーションで切り替えに使うプロファイル名を指定する。 package hello.impl; import org.springframework.context.annotation.Profile; import org.springframework.stereotype.Service; import hello.GreedInterface; @Profile("hello") @Service public class HelloService implements GreedInterface { @O