当前位置:网站首页>Apache DButils使用注意事项--with modifiers “public“
Apache DButils使用注意事项--with modifiers “public“
2022-07-31 04:56:00 【Alex抱着爆米花】
报错信息
Exception in thread "main" java.sql.SQLException: Cannot create
com.hsp.chapter25.Apache.Actor: class org.apache.commons.dbutils.BeanProcessor cannot
access a member of class com.hsp.chapter25.Apache.Actor with modifiers "public" Query:
select * from stu where id > ? Parameters: [1]
源代码
在queryRunner.query中给 模板类时报错
可以看到我是将Actor.class放在一起的,根据提示,应该是分开写用pulic修饰
package com.hsp.chapter25.Apache;
import com.hsp.chapter25.Druid.JDBCByDruid;
import org.apache.commons.dbutils.QueryRunner;
import org.apache.commons.dbutils.ResultSetHandler;
import org.apache.commons.dbutils.handlers.BeanListHandler;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.List;
public class Apache {
public static void main(String[] args) throws SQLException {
Connection connection = JDBCByDruid.getConnection();
QueryRunner queryRunner = new QueryRunner();
String sql = "select * from stu where id > ?";
List<Actor> query = queryRunner.query(connection, sql, new BeanListHandler<>(Actor.class), 1);
for (Actor actor : query) {
System.out.println(actor);
}
JDBCByDruid.close(null, null, connection);
}
}
class Actor {
private Integer id;
private String name;
public Actor() {
//一定要给一个无参构造器[反射需要]
}
public Actor(Integer id, String name) {
this.id = id;
this.name = name;
}
@Override
public String toString() {
return "Actor{" +
"id=" + id +
", name='" + name + '\'' +
'}';
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
修改
分开写
1、Apache.class
package com.hsp.chapter25.Apache;
import com.hsp.chapter25.Druid.JDBCByDruid;
import org.apache.commons.dbutils.QueryRunner;
import org.apache.commons.dbutils.ResultSetHandler;
import org.apache.commons.dbutils.handlers.BeanListHandler;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.List;
public class Apache {
public static void main(String[] args) throws SQLException {
Connection connection = JDBCByDruid.getConnection();
QueryRunner queryRunner = new QueryRunner();
String sql = "select * from stu where id > ?";
List<Actor> query = queryRunner.query(connection, sql, new BeanListHandler<>(Actor.class), 1);
for (Actor actor : query) {
System.out.println(actor);
}
JDBCByDruid.close(null, null, connection);
}
}
2、Actor.java
一定要设置设置属性和对应的get,set方法
如果设置了有参构造器,对应的无参构造器也要写,否则报错
默认不写构造器也是可以的
写有参构造器,无参构造器也要写
package com.hsp.chapter25.Apache;
public class Actor {
private Integer id;
private String name;
public Actor() {
}
public Actor(Integer id, String name) {
this.id = id;
this.name = name;
}
@Override
public String toString() {
return "Actor{" +
"id=" + id +
", name='" + name + '\'' +
'}';
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}

不写构造器,也是OK的
package com.hsp.chapter25.Apache;
public class Actor {
private Integer id;
private String name;
@Override
public String toString() {
return "Actor{" +
"id=" + id +
", name='" + name + '\'' +
'}';
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}

边栏推荐
- Puzzle Game Level Design: Reverse Method--Explaining Puzzle Game Level Design
- A complete introduction to JSqlParse of Sql parsing and conversion
- Error EPERM operation not permitted, mkdir 'Dsoftwarenodejsnode_cache_cacach Two solutions
- Gaussian distribution and its maximum likelihood estimation
- 12个MySQL慢查询的原因分析
- 打造基于ILRuntime热更新的组件化开发
- Go语学习笔记 - 处理超时问题 - Context使用 | 从零开始Go语言
- .NET-6.WinForm2.NanUI学习和总结
- EasyExcel的简单读取操作
- MySQL database addition, deletion, modification and query (detailed explanation of basic operation commands)
猜你喜欢

CentOS7 —— yum安装mysql
![[Cloud Native] DevOps (5): Integrating Harbor](/img/5a/dd33d7d3cb0124f328d2d38fff0125.png)
[Cloud Native] DevOps (5): Integrating Harbor

SOLVED: After accidentally uninstalling pip (two ways to manually install pip)

Centos7 install mysql5.7

DVWA installation tutorial (understand what you don't understand · in detail)

开源汇智创未来 | 2022开放原子全球开源峰会OpenAtom openEuler分论坛圆满召开

ERROR 2003 (HY000) Can't connect to MySQL server on 'localhost3306' (10061)Solution

【C语言】操作符详解

MySQL database backup

MySQL常见面试题汇总(建议收藏!!!)
随机推荐
Unity资源管理系列:Unity 框架如何做好资源管理
Go语学习笔记 - 处理超时问题 - Context使用 | 从零开始Go语言
mysql uses on duplicate key update to update data in batches
MySQL optimization slow log query
DVWA安装教程(懂你的不懂·详细)
Mysql应用安装后找不到my.ini文件
.NET-6.WinForm2.NanUI learning and summary
SOLVED: After accidentally uninstalling pip (two ways to manually install pip)
Mysql application cannot find my.ini file after installation
[Detailed explanation of ORACLE Explain]
Create componentized development based on ILRuntime hot update
Moment Pool Cloud quickly installs packages such as torch-sparse and torch-geometric
扫雷小游戏——C语言
centos7安装mysql5.7
STM32HAL library modifies Hal_Delay to us-level delay
Unity resources management series: Unity framework how to resource management
.NET-9. A mess of theoretical notes (concepts, ideas)
简易网络文件拷贝的C实现
MySQL transaction isolation level, rounding
MySQL常见面试题汇总(建议收藏!!!)