|
package net.risesoft.demo.config;
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
@Configuration(proxyBeanMethods = true)
|
|
public class Y9Config {
|
|
|
|
@Bean
|
|
public Y9Context y9Context() {
|
|
return new Y9Context();
|
|
}
|
|
|
|
}
|