Eclipse新建Spring boot提示IOException: Server returned HTTP response code: 403

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Eclipse新建Spring boot提示IOException: Server returned HTTP response code: 403相关的知识,希望对你有一定的参考价值。

如题,新建Spring boot,总是报错,连接不上,请问大神如何解决。eclipse版本是4.7.1a,Sts也是官网下载的最新对应版本。

参考技术A

环境描述

Spring MVC 使用 @RequestBody 接收JSON参数转为实体对象

[java] view plain copy

    public void save(@RequestBody Scene scene, HttpServletRequest  

    request, HttpServletResponse response) throws Exception   

      


    客户端添加下面的代码解决问题:

    [java] view plain copy

    connection.setRequestProperty("Content-Type", "application/json; charset=utf-8");  

参考技术B Server URL 改为: http://start.spring.io/
最后面加个正斜杠就可以了
参考技术C 大兄弟 地址好像出错了 https 试试看

Eclipse对spring-boot,spring-boot-mybatis的搭建

1.准备工作

1.1.如果没有sts(spring tool suite)插件,  则需要下载。

1.1.1.eclipse下载的话,一定要注意版本,因为eclipse会直接下载最新版本,如果ts版本与eclipse的对应不上,则会新建不了springboot工程。help--> Eclipse Marketplace,然后选择Popular,选择sts,点击install。(注意:下载之前,maven的镜像文件调整为aliyun的)。

下载完毕之后,如果版本不对,则需要更新:Help-->Install New Software-->work with 中输入:http://dist.springsource.com/release/TOOLS/update/e4.6/

注意:e4.6是我的eclipse的版本,查看eclipse版本:help-->About eclipse,然后点击eclipse图标(一般来说都是第一个),找到Featrue name下的Eclipses Platform 查看版本。

1.2.也可以在这里选择下载:https://spring.io/tools/sts/legacy,安装自行度娘。

2.新建sprint boot 

2.1.new-->other-->spring boot,选择spring stater project,根据需要填写,在next之后,选择web,选择sql

,然后选择数据库,我的是mysql,我要整合mybatis,所以也点了mybastis。(如若只点击web,就会成功的新建了spring boot)

2.2.新建完成后,会自行下jar包,如果maven版本太低,则pom会报一个org.codehaus.plexus.archiver.jar.Manifest.write(java.io.PrintWriter)错误。解决方案是:

  在help --> Install New Software > Work with中输入如下,

https://otto.takari.io/content/sites/m2e.extras/m2eclipse-mavenarchiver/0.17.2/N/LATEST/,
然后回车,等待,安装完毕后重启即可。

配置数据库连接:

spring.datasource.url=jdbc:mysql://localhost:3306/数据库名字
spring.datasource.username=pass
spring.datasource.password=密码
spring.datasource.driver-class-name=com.mysql.jdbc.Driver

#配置maper映射文件,在resource下的mapper文件下
mybatis.mapper-locations= classpath:mapper/*.xml



 












以上是关于Eclipse新建Spring boot提示IOException: Server returned HTTP response code: 403的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot 1-项目快速搭建

Eclipse对spring-boot,spring-boot-mybatis的搭建

在eclipse中安装maven和spring boot

eclipse安装spring boot插件spring tool suite

初入Spring-boot

无法从命令提示符将 Spring Boot 应用程序作为可运行 jar 运行