Sprig boot 问题 笔记

1.启动类要放在java下的一个包中 否则报错

Sprig boot 问题 笔记_第1张图片

2.项目启动 浏览器访问 localhost:8080/

纠结于访问8080 显示tomcat页面。
后台显示:

Initializing Spring FrameworkServlet 'dispatcherServlet'
FrameworkServlet 'dispatcherServlet': initialization started
FrameworkServlet 'dispatcherServlet': initialization completed in 17 ms

应该访问路径 为
http://localhost:8080/控制类 / 方法上的路径/

3.使用 DataSource

报错 java.sql.SQLRecoverableException: IO 错误: The Network Adapter could not establish the connection

Sprig boot 问题 笔记_第2张图片

Sprig boot 问题 笔记_第3张图片
Sprig boot 问题 笔记_第4张图片

还不可以,于是重启了idea 并清理缓存,然后就好了。。。

4.后台向前台传json,前台接收json为空

问题:前台跨域解析问题

No 'Access-Control-Allow-Origin' header is present on the requested resource. 
Origin 'http://浏览器地址' is therefore not allowed access.

参考:https://www.cnblogs.com/yuansc/p/9076604.html

我是使用的spring boot 搭建的项目,在controller 类中添加

@CrossOrigin(origins = "http://浏览器报错地址", maxAge = 3600)
@Controller
@RequestMapping(value="http://xxxxx")
public class xxxx{

}

你可能感兴趣的:(Sprig boot 问题 笔记)