gpt4 book ai didi

java - "Setter Injection with Map"如何实现

转载 作者:行者123 更新时间:2023-11-30 08:18:41 24 4
gpt4 key购买 nike

我是 Spring 新手,正在尝试学习 Spring我正在尝试使用 Map 实现 Setter 注入(inject),我不知道如何实现这一点,我遵循了一些教程,但在编写代码后,我收到语法错误,我不知道如何解决这个问题,即使在 Eclipse 中我也没有得到任何建议。

请建议我如何实现这一目标。

我有三个文件

Question.java Class
applicationContext.xml
TeatMain.java

问题.java

package com.varun.si.collection.map;

import java.security.KeyStore.Entry;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;

public class Question {
private int id;
private String name;
private Map<String,String> answers;

public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}


public Map<String, String> getAnswers() {
return answers;
}
public void setAnswers(Map<String, String> answers) {
this.answers = answers;
}
public void display()
{
System.out.println("Id :"+id+"\nName :"+name);
System.out.println("Answers are....");


Set<Entry<String, String>> set=answers.entrySet();
Iterator<Entry<String, String>> itr=set.iterator();

while(itr.hasNext()){
Entry<String,String> entry=itr.next();
System.out.println("Answer:"+entry.getKey()+" Posted By:"+entry.getValue());
}
}
}

我在这些行中遇到错误

Set<Entry<String, String>> set=answers.entrySet();  

Entry<String,String> entry=itr.next();

applicationContext.xml

<?xml version="1.0" encoding="UTF-8"?>

<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">

<bean id="question" class="com.varun.si.collection.map.Question">
<property name="id" value="100"></property>
<property name="name" value="varun"></property>
<property name="answers">
<map>
<entry key=" Tera kya hoga re kaliya" value="Gabbar"></entry>
<entry key="" value="Basanti"></entry>
<entry key="Basanti in kutto ke samne mat nachna" value="Veru"></entry>
<entry key="Bhag dhano bhag aaj teri basanti ki izzat ka sawal hai" value="Basanti"></entry>
<entry key="Ye dosti hum nahi chorenge" value="Jay"></entry>
<entry key="ye hath mujhe de de gabbar" value="Thakur"></entry>

</map>

</property>
</bean>



</beans>

TestMain.java

package com.varun.si.collection.map;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.xml.XmlBeanFactory;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.Resource;

public class TestMain {

public static void main(String[] args) {
// TODO Auto-generated method stub

Resource resource=new ClassPathResource("com/varun/si/collection/map/applicationContext.xml");
BeanFactory factory=new XmlBeanFactory(resource);
Question question=(Question)factory.getBean("question");
question.display();


}

}

最佳答案

更改 Question.java 中的以下导入:

import java.security.KeyStore.Entry;

对此:

import java.util.Map.Entry;

您正在使用一个类而不是另一个类。

编辑:

对于你的第一个问题:有必要使用Entry,因为它是对Set进行迭代的最佳方式。

关于你的第二个问题,错误是这样的:

  1. xml中声明的bean是com.varun.si.collection.map.Question
  2. com.varun.si.collection.Question中使用的类在TestMain中使用

当您考虑发布的代码时,没有引用 com.varun.si.collection.Question 所以我想还有另一个或其他配置。

建议您添加:

import com.varun.si.collection.map.Question;

TestMain.java并最终删除导入com.varun.si.collection.Question(如果有的话)

关于java - "Setter Injection with Map"如何实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29297139/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com