💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
~~~ package com.supergo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.web.servlet.ServletComponentScan; import tk.mybatis.spring.annotation.MapperScan; @SpringBootApplication //启用Servlet|Filter配置 @ServletComponentScan @MapperScan(value="com.supergo.mapper") public class ManagerServiceApplication { public static void main(String[] args) { SpringApplication.run(ManagerServiceApplication.class); } } ~~~