- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的测试应用程序中,我试图创建一个 springboot api。我创建了一个 api,通过它我可以获得包含重复 id(sid) 的对象列表。现在我想按 sid 过滤该列表并将值 (custRefId) 与相应的 id 合并。
列出 Api 的输出:
[
{
"sId": 101,
"sName": "Nike",
"custRefId": "S1234567890a1001INR"
},
{
"sId": 201,
"sName": "Addidas",
"custRefId": "S1234567895a1004INR"
},
{
"sId": 501,
"sName": "U.S Polo",
"custRefId": "S1234567000a1258INR"
},
{
"sId": 501,
"sName": "U.S Polo",
"custRefId": "S1234567000a1011INR"
},
{
"sId": 501,
"sName": "U.S Polo",
"custRefId": "S1234567899a1008INR"
}
]
所需输出:
{
"sId": 101,
"sName": "Nike",
"custRefId": "S1234567890a1001INR"
},
{
"sId": 201,
"sName": "Addidas",
"custRefId": "S1234567895a1004INR"
},
{
"sId": 501,
"sName": "U.S Polo",
"custRefId": {"S1234567000a1258INR","S1234567000a1011INR","S1234567899a1008INR"}
}
<小时/>
enter code here
我的测试bean
package com.example.easynotes.model;
import java.io.Serializable;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.EmbeddedId;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import com.example.easynotes.controller.CompositeKeyEntity;
@Entity(name = "TestApi")
@Table(name="test")
public class TestApi implements Serializable{
/**
*
*/
private static final long serialVersionUID = -6972984895555407355L;
@EmbeddedId
private CompositeKeyEntity CompositeKeyEntity;
@Column(name = "S_Id")
private Long sId;
@Column(name = "S_Name")
private String sName;
@Column(name = "B_Id")
private int bId;
@Column(name = "B_Name")
private String bName;
@Column(name = "Login_Date")
private Date loginDate;
@Column(name = "Amount")
private int amount;
@Column(name = "B_Acc")
private String bAccount;
public TestApi() {
super();
}
public TestApi(com.example.easynotes.controller.CompositeKeyEntity compositeKeyEntity, Long sId, String sName,
int bId, String bName, Date loginDate, int amount, String bAccount) {
super();
CompositeKeyEntity = compositeKeyEntity;
this.sId = sId;
this.sName = sName;
this.bId = bId;
this.bName = bName;
this.loginDate = loginDate;
this.amount = amount;
this.bAccount = bAccount;
}
public CompositeKeyEntity getCompositeKeyEntity() {
return CompositeKeyEntity;
}
public void setCompositeKeyEntity(CompositeKeyEntity compositeKeyEntity) {
CompositeKeyEntity = compositeKeyEntity;
}
public Long getsId() {
return sId;
}
public void setsId(Long sId) {
this.sId = sId;
}
public String getsName() {
return sName;
}
public void setsName(String sName) {
this.sName = sName;
}
public int getbId() {
return bId;
}
public void setbId(int bId) {
this.bId = bId;
}
public String getbName() {
return bName;
}
public void setbName(String bName) {
this.bName = bName;
}
public Date getLoginDate() {
return loginDate;
}
public void setLoginDate(Date loginDate) {
this.loginDate = loginDate;
}
public int getAmount() {
return amount;
}
public void setAmount(int amount) {
this.amount = amount;
}
public String getbAccount() {
return bAccount;
}
public void setbAccount(String bAccount) {
this.bAccount = bAccount;
}
}
测试 API 存储库:
package com.example.easynotes.repository;
import java.util.List;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.query.Param;
import org.springframework.stereotype.Repository;
import com.example.easynotes.controller.CompositeKeyEntity;
import com.example.easynotes.model.TestApi;
@Repository
public interface TestRepo extends JpaRepository<TestApi, CompositeKeyEntity>{
@Query(
value = "SELECT * FROM test WHERE S_Id = :sId",
nativeQuery = true
)
public TestApi getSDataById(@Param("sId")long sId);
@Query(value="SELECT h.S_Id,h.S_Name,h.B_Id,h.B_Name,h.Login_Date,h.Amount,h.B_Acc,h.S_Acc,h.B_Ref_Id,h.CRR FROM test h order by h.Login_Date asc",nativeQuery = true )
public List<TestApi> getSellerData();
@Query(
value = "SELECT * FROM test WHERE S_Id = :sId and S_Name =:sName",
nativeQuery = true
)
public List<TestApi> findDataBySIDAndSName(long sId, String sName);
}
TestController 类:
package com.example.easynotes.controller;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.stream.Stream;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.example.easynotes.model.TestApi;
import com.example.easynotes.model.TestBean;
import com.example.easynotes.repository.TestRepo;
import com.google.common.collect.ArrayListMultimap;
import com.google.common.collect.Multimap;
@RestController
@RequestMapping("/LCRF")
public class TestController {
List<TestApi> lcrf = new ArrayList<TestApi>();
List<TestApi> tmp = new ArrayList<TestApi>();
@Autowired
TestRepo lRepo;
@Autowired
Assembler assembler;
@GetMapping("/allData")
public List<TestBean> getAll()
{
getMergeIds(assembler.sBBeanList(lRepo.getSellerData()));
return assembler.sBBeanList(lRepo.getSellerData());
}
@GetMapping("/allData/{sellerId}")
public TestApi getSellerDetail(@PathVariable(value = "sellerId")Long sellerId)
{
return lRepo.getSDataById(sellerId);
}
@GetMapping("/allData/{sId}/{sName}")
public List<TestApi> getDataByIdAndName(@PathVariable(value = "sId")Long sId,@PathVariable(value = "sId")String sName)
{
lcrf = lRepo.findDataBySIDAndSName(sId, sName);
return lcrf;
}
public List<TestMergeIds> getMergeIds(List<TestBean> testBean)
{
List<TestBean> testList = new ArrayList<TestBean>();
Multimap<Long, String> multiMap = ArrayListMultimap.create();
TestMergeIds testMergeIdsBean = new TestMergeIds();
for(TestBean bean: testBean) {
multiMap.put(bean.getsId(), bean.getCustRefId());
}
Set<Long> keys = multiMap.keySet();
List<String> targetList = new ArrayList<>();
for (Long key : keys) {
}
System.out.println("Print list values ---111---"+targetList);
return null;
}
}
CompositeKeyEntity 类:
package com.example.easynotes.controller;
import java.io.Serializable;
import javax.persistence.Column;
import javax.persistence.Embeddable;
@Embeddable
public class CompositeKeyEntity implements Serializable{
private static final long serialVersionUID = 1581433221916043048L;
@Column(name="S_Acc")
private String sAccount;
@Column(name="B_Ref_Id")
private String bRefId;
@Column(name="CRR")
private String crr;
public String getsAccount() {
return sAccount;
}
public void setsAccount(String sAccount) {
this.sAccount = sAccount;
}
public String getbRefId() {
return bRefId;
}
public void setbRefId(String bRefId) {
this.bRefId = bRefId;
}
public String getCrr() {
return crr;
}
public void setCrr(String crr) {
this.crr = crr;
}
}
汇编器类:
package com.example.easynotes.controller;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.ListIterator;
import org.springframework.beans.BeanUtils;
import org.springframework.stereotype.Component;
import com.example.easynotes.model.TestApi;
import com.example.easynotes.model.TestBean;
@Component
public class Assembler {
public List<TestBean> sBBeanList(final List<TestApi> testApiList)
{
final List<TestBean> SellerBuyerBeanList = new ArrayList<>(testApiList.size());
if(!testApiList.isEmpty())
{
for(final TestApi lcrfApiEntity : testApiList) {
final TestBean sellerBuyerBeanlist = new TestBean();
BeanUtils.copyProperties(lcrfApiEntity, sellerBuyerBeanlist);
sellerBuyerBeanlist.setCustRefId(formSellerBuyerRefId(lcrfApiEntity.getCompositeKeyEntity()));
SellerBuyerBeanList.add(sellerBuyerBeanlist);
}
}
return SellerBuyerBeanList;
}
private String formSellerBuyerRefId(final CompositeKeyEntity compositeKeyEntity)
{
StringBuilder sBuilder=new StringBuilder();
sBuilder.append(compositeKeyEntity.getsAccount());
sBuilder.append(compositeKeyEntity.getbRefId());
sBuilder.append(compositeKeyEntity.getCrr());
return sBuilder.toString();
}
}
enter code here
最佳答案
您可以使用 Java 8 Streams 将其过滤到一个集合中:
Set<TestApi> filteredSet = testApiList.stream()
.collect(Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(TestApi::getSId))));
另一个 Java 8 功能(如果您想将其保留为列表):
//Temporary set of Long that will filter the Ids
Set<Long> tempSet = new HashSet<>();
//Duplicated Ids
List<Long> duplicatedList = new ArrayList<>();
//The same list but filtered
testApiList.removeIf(e -> {
boolean duplicated = !tempSet.add(e.getSId());
if (duplicated) duplicatedList.add(e.getSId());
return duplicated;
});
添加了重复列表。
关于java - 如何在Java中通过id过滤重复的ArrayList - spring boot data jpa,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52503150/
有人可以解释一下 spring-boot-parent 和 spring-boot-starter-parent 之间的区别吗,正如我在下面附加的 GIT HUB 代码链接之一中看到的,他们为 spr
我有与 jersey 框架集成的 Spring Boot 应用程序。 现在,当我尝试运行该应用程序时,它只是停留在 Spring 启动徽标上,之后没有任何 react 。 我也尝试添加 -X ,但徽标
我指的是 Spring Boot 关于 的文档自动配置 和 执行器 模块: 自动配置: Spring Boot AutoConfiguration attempts to automatically
我正在尝试将 apache log4j 集成到我的 Spring boot 应用程序中。这是我的 build.gradle 文件: build.gradle buildscript { rep
使用 Spring Boot Maven 插件的以下命令在生产中启动 Spring Boot 应用程序是否是一个好主意或实践? mvn spring-boot:run 最佳答案 不,这是个坏主意。 您
据我所知,spring boot 和 spring session 为我们提供了一站式自动配置,但是当我的应用程序使用 session redis 和应用程序缓存 redis 时,不是同一个 redi
我希望使用Spring Boot创建一个新的Web应用程序。不幸的是,我的服务器在技术堆栈方面相当有限。它安装了Java 5。 谁能告诉我spring boot是否可以在Java 1.5上运行以及什么
我有3个实体 CarWash(设置Wash) Wash(car_wash_id FK到CarWash) WashComment(wash_id FK到Wash) 有什么办法可以写这个查询 @Qu
我一直在关注this文章。 我正在尝试在Spring-boot应用程序中优雅地处理gRPC错误,的主要目标是能够在gRPC客户端中获取错误状态。 在上面的文章之后,我坚持为异常添加拦截器。如何在Spr
我有一个要使用的自定义log4j布局插件。在IntelliJ中运行或与./gradlew bootRun一起运行时,插件可以正常工作。不使用./gradlew bootJar构建启动jar。 启用-D
我想在给定范围 (5001-5100) 的随机端口上启动 Spring Cloud 应用程序(Spring Boot 1.5.14,Spring Cloud Edgware.SR4)。我知道我们可以使
任何人都可以向我展示或指出不使用 spring boot gradle 插件的 spring boot gradle 项目。 我正在寻找类似不使用 gradle 插件的 spring boot sta
我当时尝试包含上述依赖项之一,但找不到任何区别: spring boot starter web:我可以看到 Flux 和 Mono 类并制作一个响应式(Reactive)休息 Controller
我们一直在为我们的应用程序使用 Springboot 1.X。 现在准备开始一些新的应用程序,想知道我们是应该使用 SpringBoot2.0 还是坚持使用 SpringBoot 1.X? 对一种方式
我希望记录应用程序正在加载 application-profile.propeties 或 application.yml。怎么做。在哪种方法中,我可以听取它并检测它是成功加载还是失败。 最佳答案 您
当我在 pom.xml 中添加简单的 spring-boot-starter-data-jpa 依赖项时,在 pom.xml 文件中出现错误。如果我删除该依赖项,则不会再有错误。我不确定为什么会发生这
我希望记录应用程序正在加载 application-profile.propeties 或 application.yml。怎么做。在哪种方法中,我可以听取它并检测它是成功加载还是失败。 最佳答案 您
我在网上看了很多关于 spring-boot-devtools 的文章和问题,但仍然无法弄清楚为什么它对我不起作用。每次运行我的应用程序时,我都会得到以下信息: 17:54:28.057 [main]
我正在尝试将现有的 Spring 应用程序移植到 Spring Boot。我不使用 spring-boot-starter-data-solr 启动器,但是我的类路径上有 apache solrj (
(这主要是一个历史问题。Pivotal 建议所有论坛讨论都在 StackOverflow 上进行,这就是我在这里问它的原因。) Spring Boot 项目用来证明将应用程序的类和依赖项从可执行 ja
我是一名优秀的程序员,十分优秀!