spring data mongodb 提供的MongoTemplate 模板,进行Aggregation操作实践

使用spring data mongodb 提供的MongoTemplate 模板,进行Aggregation操作实践

public class FlowSizeAggregateTest
{
public static void main(String[] args) throws Exception
{
ApplicationContext context = new ClassPathXmlApplicationContext(
"classpath*:META-INF/spring/*.xml");

MongoTemplate mongoTemplate = (org.springframework.data.mongodb.core.MongoTemplate) context
.getBean(MongoTemplate.class);

// Criteria criteria =
// Criteria.where("userName").is("123123@123.com");
Aggregation aggregation = Aggregation.newAggregation(Aggregation
.group("userName").sum("flowSize").as("tatoalFlowSize").sum("amount").as("totalAmount"));
AggregationResults<User> aggRes = mongoTemplate.aggregate(aggregation,
"flow_2016_10", User.class);
List<User> listRes = aggRes.getMappedResults();

for (User user : listRes)
{
System.out.println(user);
}
System.out.println(listRes.size());
}

}

class User implements Serializable
{

/**
 * 
 */
private static final long serialVersionUID = -6420217644123680385L;


private String _id;


private String tatoalFlowSize;


private Double totalAmount;


public String get_id()
{
return _id;
}
public void set_id(String _id)
{
this._id = _id;
}
public String getTatoalFlowSize()
{
return tatoalFlowSize;
}
public void setTatoalFlowSize(String tatoalFlowSize)
{
this.tatoalFlowSize = tatoalFlowSize;
}
public Double getTotalAmount()
{
return totalAmount;
}
public void setTotalAmount(Double totalAmount)
{
this.totalAmount = totalAmount;
}
@Override
public String toString()
{
return "User [_id=" + _id + ", tatoalFlowSize=" + tatoalFlowSize
+ ", totalAmount=" + totalAmount + "]";
}


}

使用spring data mongodb 提供的MongoTemplate 模板,进行Aggregation操作实践

public class FlowSizeAggregateTest
{
public static void main(String[] args) throws Exception
{

ApplicationContext context = new ClassPathXmlApplicationContext(
"classpath*:META-INF/spring/*.xml");


MongoTemplate mongoTemplate = (org.springframework.data.mongodb.core.MongoTemplate) context
.getBean(MongoTemplate.class);


// Criteria criteria =
// Criteria.where("userName").is("123123@123.com");
Aggregation aggregation = Aggregation.newAggregation(Aggregation
.group("userName").sum("flowSize").as("tatoalFlowSize").sum("amount").as("totalAmount"));
AggregationResults<User> aggRes = mongoTemplate.aggregate(aggregation,
"flow_2016_10", User.class);
List<User> listRes = aggRes.getMappedResults();


for (User user : listRes)
{
System.out.println(user);
}
System.out.println(listRes.size());
}

}

class User implements Serializable
{

/**
 * 
 */
private static final long serialVersionUID = -6420217644123680385L;


private String _id;

private String tatoalFlowSize;

private Double totalAmount;

public String get_id()
{
return _id;
}


public void set_id(String _id)
{
this._id = _id;
}

public String getTatoalFlowSize()
{
return tatoalFlowSize;
}

public void setTatoalFlowSize(String tatoalFlowSize)
{
this.tatoalFlowSize = tatoalFlowSize;
}

public Double getTotalAmount()
{
return totalAmount;
}

public void setTotalAmount(Double totalAmount)
{
this.totalAmount = totalAmount;
}

@Override
public String toString()
{
return "User [_id=" + _id + ", tatoalFlowSize=" + tatoalFlowSize
+ ", totalAmount=" + totalAmount + "]";
}

}

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值