在Spring Boot中創建一個類非常簡單。以下是一些方法:
import org.springframework.stereotype.Component;
。@Component
或其他相關的注解來標注你的類。這些注解告訴Spring Boot框架這個類是一個組件,并且會被自動加載和管理。例如:@Component
public class MyComponent {
// ...
}
這樣,你就在Spring Boot中創建了一個類。你可以在其他類中使用@Autowired
注解來自動注入這個類的實例,或者將其聲明為其他Spring Bean的依賴。
請注意,這只是一個簡單的示例。在實際的應用中,你可能需要更多的配置和注解來滿足你的需求。