STS显示EOFException创建新的Spring Starter项目

时间:2018-12-23 17:08:12

标签: eclipse eofexception

我已经为MAC安装了STS(版本:3.9.6.RELEASE,构建ID:201809180749,平台:Eclipse 2018-09,4.9.0),并安装了Java JDK(版本11.0.1)。

当我打开STS并尝试创建一个新的Spring Starter Project时,在尝试连接到服务URL:https://start.spring.io时,看到以下错误:import React, { Component } from 'react'; import axios from 'axios'; class Example extends Component { constructor(props) { super(props); this.state = { todos: [] } } componentDidMount() { axios.get("https://jsonplaceholder.typicode.com/todos") .then(response => { this.setState({ todos: this.data }); }) } render() { const { todos = [] } = this.state; return ( <div className="App"> <header className="App-header"> <Table> <thead> <tr> <th>User ID</th> <th>ID</th> <th>Title</th> <th>Completed</th> </tr> </thead> <tbody> {todos.length ? todos.map(todo => ( <tr> <td>{todo.userId}</td> <td>{todo.id}</td> <td>{todo.title}</td> <td>{todo.completed}</td> </tr> )) : (<tr> <td>-</td> <td>-</td> <td>-</td> <td>-</td> </tr>) } </tbody> </Table> </header> </div> ); } } export default Example;

如何摆脱这个错误,以便可以使用Spring的Boots Starter选项?

enter image description here

0 个答案:

没有答案