开发总结

1.添加 contentType:“application/json“之后,向后台发送数据的格式必须为json字符串  

2.我们在项目开发时开发环境和运行环境的配置是不一样的,比如数据库本地测试,和运行环境数据库的地址是不同的。这时候可以通过spring.profiles.active来分区配置。

  yml:

---
# 本机环境配置
spring:
profiles: local
eureka-url: localhost:1025
# 测试环境配置
spring:
profiles: test
eureka-url: 192.168.91.32:1025

根据情况

 


posted @ 2018-11-03 15:48  toov5  阅读(127)  评论(0编辑  收藏  举报