This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package xyz.wbsite.mcp.basic;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* MCP基础原理示例入口
* 该方式适合理解mcp原理,开发较繁琐,需要自己解析工具,不适合生产环境下使用,请参考@link{McpServerApplication}
*
* @author wangbing
*/
@SpringBootApplication
public class BasicApplication {
public static void main(String[] args) {
SpringApplication.run(BasicApplication.class, args);
}
Powered by TurnKey Linux.