初识spring Boot 超精简MVC实现

file-new -Spring Stater project  web依赖

@RestController
@SpringBootApplication
public class HelloSpringBootApplication {
	@RequestMapping("/")
		public String hello(){
			return "hello SpringBoot";
	}
	public static void main(String[] args) {
		SpringApplication.run(HelloSpringBootApplication.class, args);
	}
}
localhost:8080/ 

10行实现SpringMVC 不需要配置任何XML文件。

file-new-spring stater project  web Thymeleaf依赖

@Controller
@SpringBootApplication
public class HelloSpringBootApplication {
	@RequestMapping("/")
		public String hello(){
			return "index";
	}
	public static void main(String[] args) {
		SpringApplication.run(HelloSpringBootApplication.class, args);
	}
}
定向到index.html
index.html 放到resource/templates里

<html>
<head>
<meta charset="UTF-8"></meta>
<title>Insert title here</title>
</head>
<body>
HEllo SpringBoot
</body>
</html>
localhost:8080/ 

上面2个程序主要的不同是 @RestController和@Controller

@RestController 是@Controller和ResponseBody的结合体 说明return的是response




PS:

SpringBootApplication  开启自动配置    

 SpringApplication.run(Main.class,args)   Spring boot 入口 

application.properties 配置

tomcat:

server.port=***

Profile 不同环境对不同配置提供支持

不同的配置文件  application-{profile}.properties

在application.properties里配置

spring.profiles.active= profile

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值