Maven 项目

点参系统
首先,在idea中 file - new - project

无

新建一个mpom.xml文件
无

在pom文件中添加

<parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.4.5</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
  <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
    </dependencies>

无

然后点最右边点击maven刷新一下

无

新建一个包

无

在包里新建一个带main函数的类

无

在类中添加语句

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class RestaurantMain {
    public static void main(String[] args) {
        SpringApplication.run(RestaurantMain.class,args);
    }
}

 

无

 

在com.sdcet 包下面再建一个包controller

无

包里键一个类

无

在类中添加语句

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
@ResponseBody
public class Hellocontroller {
@RequestMapping("/hello")
    public String hello(){
    return "Hello SpringBoot!!!!";
}
}

运行一下

无

运行结果

在浏览器中输入    localhost:8080/hello

就会输出内容

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值