You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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 com.shanzhu.oe ;
import lombok.extern.slf4j.Slf4j ;
import org.springframework.boot.SpringApplication ;
import org.springframework.boot.autoconfigure.SpringBootApplication ;
/**
* SpringBoot 启动类
* 项目启动入口(点击右键 选择 "BackendApplication" 启动项目)
*
* 什么是SpringBoot? ( https://www.php.cn/faq/498384.html)
*
* @author: ShanZhu
* @date: 2023-11-10
*/
@Slf4j
@SpringBootApplication
public class BackendApplication {
public static void main ( String [ ] args ) {
//SpringBoot 执行启动
SpringApplication . run ( BackendApplication . class , args ) ;
log . info ( "=====================项目后端启动成功============================" ) ;
}
}