点参系统
首先,在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
就会输出内容