在IDEA中初始化一个Springboot项目。
在main函数里面写好程序入口:
package com.example.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@SpringBootApplication
public class Demo4Application {
public static void main(String[] args) {
SpringApplication.run(Demo4Application.class, args);
}
}
下面利用@controller和@RequestMapping来实现浏览器输出hello的效果。
package com.example.demo;
import org.springframework.stereotype.*;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
public class sController {
@ResponseBody
@RequestMapping("/hello")
public String hello()
{
return "hello,chenyanzhou";
}
}
下面进行编译和运行:
可以发现自动在Tomcat服务器部署完成,登录8080端口查看是否成功——
下面进行jar文件的打包——
点击Run Maven Build,成功以后会显示Build Success。
在CMD中进行验证——
运行成功。