先决条件:Java7和SQLServer 2016。
我从SQL Server获取存储过程返回的结果集
结果集:
RId ConId ActNbr StageId Qty HoursInStage HoursPassed HourlyQty FlowedQty
--- ------ ------ ------- ------ ------------ ----------- --------- ---------
50 6814 77 1 24000 24 0 NULL NULL
50 6814 77 2 36000 19 5 NULL NULL
50 6814 77 3 48000 15 9 NULL NULL
50 6814 77 4 60000 11 13 NULL NULL
50 6814 77 6 60000 24 0 NULL NULL
50 6855 33 1 0 24 0 NULL NULL
50 6855 33 2 15000 19 5 NULL NULL
50 6855 33 3 15000 15 9 NULL NULL
50 6855 33 4 15000 11 13 NULL NULL
50 6855 33 6 20000 24 0 NULL NULL
50 176892 10 1 0 24 0 NULL NULL
50 176892 10 2 0 19 5 NULL NULL
50 176892 10 3 0 15 9 NULL NULL
50 176892 10 4 0 11 13 NULL NULL
50 176892 10 6 0 24 0 NULL NULL
50 176892 47 1 0 24 0 NULL NULL
50 176892 47 2 0 19 5 NULL NULL
50 176892 47 3 0 15 9 NULL NULL
50 176892 47 4 0 11 13 NULL NULL
50 176892 47 6 0 24 0 NULL NULL
我创建了一个POJO类来保存结果集。我想创建一个Hashmap对象,其中Key为RId
,ConId
,ActNbr
,Value为List,其中包含给定Key的所有值。
那么,我可以使用HashMap做到这一点吗?我想我可以使用包含其他地图作为价值的地图。但不确定如何使公共键值项作为列表。
Java类: HoursQty
public class BurnProfileHourlyNomData {
private Integer stageId;
private Integer qty;
private Integer hoursInStage;
private Integer hoursPassed;
private Integer hourlyQty;
private Integer FlowedQty;
}
逻辑:
Map<Integer, Map<Integer, Map<Integer, HoursQty>>> hourlyInfo = new HashMap<>();
for(DatabaseRecord row : rows) {
Integer rId = (Integer)row.get("RId");
Integer conId = (Integer)row.get("ConId");
Integer actNbr = (Integer)row.get("ActNbr");
Integer stageId = (Integer)row.get("StageId");
Integer qty = (Integer)row.get("Qty");
Integer hoursInStage = (Integer)row.get("HoursInStage");
Integer hoursPassed = (Integer)row.get("HoursPassed");
Integer hourlyQty = (Integer)row.get("HourlyQty");
Integer flowedQty = (Integer)row.get("FlowedQty");
HoursQty impl = new HoursQty();
impl.setRId(rId);
/* Performed all set methods to assign values */
.....
Map<Integer, HoursQty> actNbrMap = new HashMap<Integer, HoursQty>();
actNbrMap.put(actNbr, impl);
Map<Integer, Map<Integer, HoursQty>> conIdMap = new HashMap<Integer, Map<Integer, HoursQty>>();
conIdMap.put(conId, actNbrMap);
hourlyInfo.put(rId, conIdMap);
}
尝试使用entryMap键和值读取此内容,但获取单个行值。不确定如何根据rId
、conId
和actNbr
作为键对所有列表进行分组,并检索与列表具有相同键的所有行。
你必须这样设计你的类。
类AccountKey,它将用作HashMap中的键。代码如下所示。
public class AccountKey {
private Integer rId;
private Integer conId;
private Integer actNbr;
public Integer getrId() {
return rId;
}
public void setrId(Integer rId) {
this.rId = rId;
}
public Integer getConId() {
return conId;
}
public void setConId(Integer conId) {
this.conId = conId;
}
public Integer getActNbr() {
return actNbr;
}
public void setActNbr(Integer actNbr) {
this.actNbr = actNbr;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
AccountKey that = (AccountKey) o;
if (rId != null ? !rId.equals(that.rId) : that.rId != null) return false;
if (conId != null ? !conId.equals(that.conId) : that.conId != null) return false;
return actNbr != null ? actNbr.equals(that.actNbr) : that.actNbr == null;
}
@Override
public int hashCode() {
int result = rId != null ? rId.hashCode() : 0;
result = 31 * result + (conId != null ? conId.hashCode() : 0);
result = 31 * result + (actNbr != null ? actNbr.hashCode() : 0);
return result;
}
}
类BurnProfileHourlyNomData将用作HashMap中的值。
public class BurnProfileHourlyNomData {
private Integer stageId;
private Integer qty;
private Integer hoursInStage;
private Integer hoursPassed;
private Integer hourlyQty;
private Integer FlowedQty;
public Integer getStageId() {
return stageId;
}
public void setStageId(Integer stageId) {
this.stageId = stageId;
}
public Integer getQty() {
return qty;
}
public void setQty(Integer qty) {
this.qty = qty;
}
public Integer getHoursInStage() {
return hoursInStage;
}
public void setHoursInStage(Integer hoursInStage) {
this.hoursInStage = hoursInStage;
}
public Integer getHoursPassed() {
return hoursPassed;
}
public void setHoursPassed(Integer hoursPassed) {
this.hoursPassed = hoursPassed;
}
public Integer getHourlyQty() {
return hourlyQty;
}
public void setHourlyQty(Integer hourlyQty) {
this.hourlyQty = hourlyQty;
}
public Integer getFlowedQty() {
return FlowedQty;
}
public void setFlowedQty(Integer flowedQty) {
FlowedQty = flowedQty;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
BurnProfileHourlyNomData that = (BurnProfileHourlyNomData) o;
if (stageId != null ? !stageId.equals(that.stageId) : that.stageId != null) return false;
if (qty != null ? !qty.equals(that.qty) : that.qty != null) return false;
if (hoursInStage != null ? !hoursInStage.equals(that.hoursInStage) : that.hoursInStage != null)
return false;
if (hoursPassed != null ? !hoursPassed.equals(that.hoursPassed) : that.hoursPassed != null)
return false;
if (hourlyQty != null ? !hourlyQty.equals(that.hourlyQty) : that.hourlyQty != null)
return false;
return FlowedQty != null ? FlowedQty.equals(that.FlowedQty) : that.FlowedQty == null;
}
@Override
public int hashCode() {
int result = stageId != null ? stageId.hashCode() : 0;
result = 31 * result + (qty != null ? qty.hashCode() : 0);
result = 31 * result + (hoursInStage != null ? hoursInStage.hashCode() : 0);
result = 31 * result + (hoursPassed != null ? hoursPassed.hashCode() : 0);
result = 31 * result + (hourlyQty != null ? hourlyQty.hashCode() : 0);
result = 31 * result + (FlowedQty != null ? FlowedQty.hashCode() : 0);
return result;
}
}
HashMap的结构将是这样的。
Map<AccountKey,BurnProfileHourlyNomData> actBurnDataMap = new HashMap<>();
一旦您从stroed过程接收到数据,填充两个对象并使用上面给出的贴图。
HQL是否可以对另一个查询的结果集进行选择?例如: 我可以在SQL中完成,但当我在HQL中尝试上述操作时,它只显示了语法错误“意外标记:(靠近第1行,第22列…”
问题内容: 我正在使用Oracle SQL,并且想对一些“喜欢”函数结果的不同行进行分组。举例说明: 假设我有一个表MESA,其中的一列是一个巨大的字符串。 我正在计算与特定模式匹配的行数: 因此,假设此查询的结果为: 水果..afsafafasfa … RED_APPLE 20 水果..afsafafasfa … YELLOW_APPLE 12 水果..afsafafasfa … GREEN_A
我们可以使用页面对象执行滚动吗? 实际上,我需要根据元素滚动网页(向上/向下)。如何使用页面对象执行。 我使用Selenium web drive来启动浏览器,并使用Page对象来自动化web页面。 有什么建议吗???
问题内容: 您如何自动化集成测试?我将JUnit用于其中一些测试。这是解决方案之一,还是完全错误?你有什么建议? 问题答案: JUnit可以工作。没有任何限制将其限制为仅单元测试。我们使用JUnit,Maven和CruiseControl来执行CI。 可能有一些特定于集成测试的工具,但我认为它们的用处取决于所集成的系统组件的类型。JUnit可以很好地用于非UI类型测试。
问题内容: 我正在使用PHP和PDO从数据库检索一组值,然后使用以下代码按第一列进行分组: 这意味着如果我的数据采用以下格式: 它返回为: 我将如何按Column1和Column2分组,这样我会得到以下信息: 可以结合使用PDO常数吗? 谢谢 问题答案: 如您所见,通过将数组与一个指定的列进行分组,可以轻松地轻松重建数组。您需要将二维数组(数据库的结果)转换为三维数组,但是 无法 以这种方式重建它
本文向大家介绍Dubbo可以对结果进行缓存吗?相关面试题,主要包含被问及Dubbo可以对结果进行缓存吗?时的应答技巧和注意事项,需要的朋友参考一下 可以,Dubbo 提供了声明式缓存,用于加速热门数据的访问速度,以减少用户加缓存的工作量。