All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dromara.northstar.strategy.StrategicComponent Maven / Gradle / Ivy

package org.dromara.northstar.strategy;

import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import org.springframework.stereotype.Component;

@Retention(RUNTIME)
@Target(TYPE)
@Component
public @interface StrategicComponent {

	//策略名称
	String value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy