@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD,ElementType.PARAMETER})
public @interface DBChange {
}
@Aspect
@Component
public class DynamicDataSourceAspect {
@Pointcut("@annotation(com.zhou.datasource.annotation.DBChange)")
private void pointcut() {
}
启动其他的配置类就报错
@Configuration
public class WebSocketConfig {
/**
* 这个Bean会自动注册使用@ServerEndpoint注解声明的websocket endpoint
*/
@Bean
public ServerEndpointExporter serverEndpointExporter() {
return new ServerEndpointExporter();
}
有没
有spring 的大佬帮忙看看啊