springboot开发遇到坑之spring-boot-starter-web配置⽂
件使⽤教程
spring boot简介
spring boot是最近⾮常流⾏的,在spring的框架上改进的框架。该框架的⽬的是为了提⾼开发⼈员的速度,降低配置的难度等等,极⼤了简化了开发流程。具体的详细的说明请参考官⽅⽂档。在⽇常⼯作中,由于需要搭建⼀套环境或者框架的机会⾮常的少,⼤部分都是在原有的基础上开发,所以当让你搭建⼀个简单的框架,就会出现各种各样的困难,⽐如说,我在搭建的⼀个服务器的时候,准备了⼀个⼩的demo,原以为⾮常的简单,结果遇到了各种各样的问题,⽽发现⽹上的博客都是零零散散的讲⼀些点,很难有⼀个完整的流程,包括可能会遇到的问题。这⾥对搭建⼀个简单的项⽬流程做⼀个详细的总结,⽅便⽇后参考,同时这⼀篇博客也是为了下⼀篇博客tengine反向代理服务器搭建做⼀点前置的基础准备。
Spring-boot的2⼤优点:
1.基于Spring框架的“约定优先于配置(COC)”理念以及最佳实践之路。
2.针对⽇常企业应⽤研发各种场景的Spring-boot-starter⾃动配置依赖模块,且“开箱即⽤”(约定spring-b
oot-starter- 作为命名前缀,都位于org.springframenwork.boot包或者命名空间下)。
本篇我将继续向⼩伙伴介绍springboot配置⽂件的配置,已经全局配置参数如何使⽤,好了下⾯开始我们今天的内容介绍。
我们知道Spring Boot⽀持容器的⾃动配置,默认是Tomcat,当然我们也是可以进⾏修改的:
1、⾸先我们排除spring-boot-starter-web依赖中的Tomcat:在pom⽂件中排除tomcat的starter
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
2、加⼊Jetty容器
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
</dependency>
这样我们的springboot容器就修改成Jetty容器了。
为了⽅便我们的调试,这⾥给⼤家推荐⼀款http调试⼯具:Postman
下⾯我们聊⼀下springboot的全局配置⽂件:application.properties
在开发中⼀定遇到过这样的需求,就是修改我们的容器访问端⼝,既然springboot默认加载容器,那么端⼝设置当然是通过配置⽂件来控制的,相当⽅便我们只需要在配置⽂件中添加:
server.port=6666
这样我们的容器端⼝就修改为6666了。
我们还可以通过配置⽂件来设置项⽬访问别名:
以上只是springboot配置⽂件配置的冰⼭⼀⾓,⽐如我们还可以设置数据库连接配置(database),设置开发环境配置,部署环境配置,实现两者之间的⽆缝切换。
下⾯我们⼀起了解⼀下关于springboot的controller的使⽤,springboot为我们提供了三个注解:
上⼀篇我们使⽤的便是@RestController,下⾯我们来⼀起使⽤@Controller试试:
@Controller
//@ResponseBody
public class RequestTest {
/**
* 不对请求⽅式限制
* @return
*/
@RequestMapping(value = "/req")
public String req(){
return "success";
}
}
{
"timestamp": 1515332935215,
"status": 404,
"error": "Not Found",
"message": "No message available",
"path": "/springboot1/req"
}
这是为什么呢?这是因为@Controller必须配合模板使⽤,所以我们这⾥打开maven的pom⽂件,添加spingboot的模板:
<!-- springboot模板 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
然后在我们项⽬的resources⽬录下到templates(如过没有,新建⼀个,但⼀定要注意⽂件夹名称必须保持⼀致),然后创建⼀个success.html这样我们再次启动项⽬,访问刚刚的地址,是不是就Ok了。
不过这⾥需要说明⼀点,现在的企业级开发都是前后端分离,我们做后台服务只需要返回对应的数据即可,当然使⽤模板还有⼀个弊端,那就是性能会造成⼀定的损耗,所以这⾥⼤家简单了解即可。
上⾯的介绍中已经说了,@Controller+@ResponseBody相当于@RestController,所以这⾥推荐⼤家使⽤
@RestController。
下⾯我们来介绍介绍⼀下@RequestMapping(value = "/req"),这个注解相信⼤家已经知道他的⽤法了,当然这个注解不但可以使⽤在⽅法上,同样适⽤于类。
@RestController
//@Controller
//@ResponseBody
@RequestMapping(value = "/test")
public class RequestTest {
/**
* 不对请求⽅式限制
* @return
*/
@RequestMapping(value = "/req")
public String req(){
return "success";
}
/**
* 限制请求⽅式为GET
* @return
*/
@RequestMapping(value = "/req1", method = RequestMethod.GET)
public String req1(){
return "success";
}
/**
* 限制请求⽅式为POST
* @return
*/
@RequestMapping(value = "/req2", method = RequestMethod.POST)
public String req2(){
return "success";
}
}
对于method相信看到这⾥你⼀定已经知道他的⽤处了,是的指定访问类型,没有设置默认任何⽅式都可以访问。不知道⼩伙伴是否想到如果在类的@RequestMapping设置过method那么类中的⽅法默认继承,当然也可以在⽅法处单独设定,优先级的问题,⼩伙伴⾃⼰尝试⼀下吧。
下⾯我将给⼤家介绍⼀下如何在Controller中的访问配置⽂件中的常量。⾸先我们在配置⽂件中添加:
name=hpugs
age=35
content=name:${name};age:${age}
我们在配置⽂件中使⽤常量,通过${}来使⽤。
下⾯我们在Controller中将参数注⼊:
//注⼊配置⽂件中的参数
@Value("${name}")
private String name;
@Value("${age}")
private Integer age;
@Value("${content}")
private String content;
@RequestMapping(value = "/req3", method = RequestMethod.GET)
public String req3(){
return "name=" + name;
}
@RequestMapping(value = "/req4", method = RequestMethod.GET)
public String req4(){
return "age=" + age;
}
@RequestMapping(value = "/req5", method = RequestMethod.GET)
public String req5(){
return "content=" + content;
}
启动我们的项⽬访问⼀下试试。
这样的使⽤如果你感觉还不过瘾,这⾥再教⼤家⼀招:我们通过类映射配置⽂件,借助类来进⾏参数使⽤,相对单个参数注⼊要⽅便⼀些,⾸先创建⼀个Java类
@Component
@ConfigurationProperties(prefix = "userInfo")
public class UserInfo {
private String names;
private Integer age;
private String content;
public Integer getAge() {
return age;
}
public String getNames() {
return names;
}
public void setNames(String names) {
this.names = names;
}
public void setAge(Integer age) {
this.age = age;
}
public String getContent() {
return content;
}
public void setContent(String content) {
}
}
然后在我们的配置⽂件中设置参数:
userInfo.names=⼩破孩
userInfo.age=25
接线来使我们的Controller:
//注⼊对象
@Autowired
private UserInfo userInfo;
@RequestMapping(value = "/req6", method = RequestMethod.GET, produces="text/plain;charset=UTF-8")
public String req6(){
return "name=" + Names();
}
@RequestMapping(value = "/req7", method = RequestMethod.GET)
public String req7(){
return "age=" + Age();
}
@RequestMapping(value = "/req8", method = RequestMethod.GET)
public String req8(){
return "content=" + Content();
}
好了重启我们的项⽬访问试试看。
⼩伙伴们不知道遇到这个问题没?出现了中⽂乱码,⾸先⼤家先不要着急,我们先看另外⼀种springboot的配置⽂件:l。这个配置⽂件通过换⾏空格来替换“;”,我们看⼀下同样的配置在yml下⾯如何配置:
server:
port: 8888
context-path: /springboot1
name: hpugs
age: 35
content: name:${name};age:${age}
userInfo:
names: ⼩破孩
age: 25
content: name:${userInfo.names};age:${userInfo.age}
现在我们启动项⽬运⾏试⼀试。
回到上⾯的乱码问题,当我们使⽤yml时是不是没有出现乱码,⼩伙伴是不是有点郁闷了,这是为什么呢?这是因
为.properties⽂件使⽤的是unicode的编码形式,所以当我们输⼊中⽂时会出现乱码。当然引乱码的还有⼀种原因那就是我能的编码设置和前端不⼀致,这个我们通过在配置⽂件中添加:
spring:
http:
encoding:
force: true
charset: UTF-8
enabled: true
server:
tomcat:
uri-encoding: UTF-8
来进⾏控制。这⾥再给⼤家介绍⼀下开发⼩技巧,springboot为我们提供了在不同开发环境下的不同配置⽂件解决⽅法:
#yml格式
spring:
profiles:
active: prod
#.properties格式
spring.profiles.active=dev
总结
以上所述是⼩编给⼤家介绍的spring boot开发遇到坑之spring-boot-starter-web配置⽂件使⽤教程,希望对⼤家有所帮助,如果⼤家有任何疑问请给我留⾔,⼩编会及时回复⼤家的。在此也⾮常感谢⼤家对⽹站的⽀持!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论