Mais um detalhe importante na porta localhost3000 deu um erro gigante no console que é esse aqui
index.js:1446 Warning: Failed prop type: You provided a `value` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultValue`. Otherwise, set either `onChange` or `readOnly`.
E depois mais este
:8080/api/autores:1 Failed to load resource: net::ERR_CONNECTION_REFUSED
O endereço do App.js está correto
componentDidMount(){
console.log("didMount");
$.ajax({
url:"http://localhost:8080/api/autores",
dataType: 'json',
success:function(resposta){
console.log("chegou a resposta");
this.setState({lista:resposta});
}.bind(this)
}
);
}
O que eu faço?