目前我遇到了为springboot项目获取mysql数据的问题:
出现意外错误(type = Internal Server Error,status = 500)。 无法提取ResultSet; SQL [不适用];嵌套异常是org.hibernate.exception.SQLGrammarException:无法提取ResultSet
TestEntity.java
@Entity
public class TestEntity implements Serializable {
@Id
private int id;
private String p1;
private String p2;
private String p3;
public TestEntity() {
}
public TestEntity(int id, String p1, String p2, String p3){
this.id = id;
this.p1 = p1;
this.p2 = p2;
this.p3 = p3;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getP1() {
return p1;
}
public void setP1(String p1) {
this.p1 = p1;
}
public String getP2() {
return p2;
}
public void setP2(String p2) {
this.p2 = p2;
}
public String getP3() {
return p3;
}
public void setP3(String p3) {
this.p3 = p3;
}
}
TestService.java
@Service
public class TestService {
@Autowired
private TestRepository testRepository;
public ArrayList<TestEntity> getAllTestEntities(){
ArrayList<TestEntity> list = new ArrayList();
testRepository.findAll().forEach(list::add);
return list;
}
public Optional getTestEntity(int id){
return testRepository.findById(id);
}
public void addTestEntity(TestEntity t){
testRepository.save(t);
}
public void removeTestEntity(int index){
testRepository.deleteById(index);
}
}
TestRepository.java
@Repository("mysql")
public interface TestRepository extends CrudRepository<TestEntity,Integer> {
}
TestController.java
@RestController
public class TestController {
@Autowired
private TestService testService;
@RequestMapping("/test/AllUnits")
public ArrayList<TestEntity> getAllTestUnits(){
return testService.getAllTestEntities();
}
@RequestMapping("/test/{id}")
public Optional getAllTestUnit(@PathVariable int id){
return testService.getTestEntity(id);
}
@RequestMapping(method=RequestMethod.POST,value = "/test" )
public void addTestUnit(@RequestBody TestEntity t){
testService.addTestEntity(t);
}
@RequestMapping(method=RequestMethod.DELETE,value = "/test/{id}" )
public void deleteTestUnit(@RequestBody Integer id){
testService.removeTestEntity(id);
}
@RequestMapping("/test/welcome")
public String welcome(){
return "welcome to springboot";
}
}
修改: application.properties
cloud.aws.region.auto=true
cloud.aws.region.static=us-east-2
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://alyxdev.czcdgqfkwsnr.us-east-2.rds.amazonaws.com:3306/CryptoCurrency
spring.datasource.username=*******
spring.datasource.password=*******
我能够将/ test / welcome映射工作,所以我相信我的服务和控制器的实现是正确的。所以我想知道在我的存储库中访问我的数据库是否犯了错误,或者我应该使用JpaRepository而不是CrudRepository并使用显式查询?
编辑堆栈跟踪: org.springframework.dao.InvalidDataAccessResourceUsageException:无法提取ResultSet; SQL [不适用];嵌套异常是org.hibernate.exception.SQLGrammarException:无法提取ResultSet 引起:org.hibernate.exception.SQLGrammarException:无法提取ResultSet 引起:com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException:Table&#39; CryptoCurrency.test_entity&#39;不存在
答案 0 :(得分:1)
通过在SQL中将表重命名为全部小写字符(test_table
)然后使用该表而不是Test_table
,我找到了解决问题的方法Springboot能够找到该表并链接将其映射到我的实体类。我不知道它为什么会这样。也许与我正在使用的Netbeans IDE有关?
答案 1 :(得分:0)
在您的实体类即TestEntity.java中,您需要指定您引用的表
@Entity
@Table(name="tbl_something")
public class TestEntity implements Serializable {
使用CrudRepository可以用于过度使用数据库。 application.properties文件对我来说很好。