2 つの Maven プロジェクト、Web アプリ、および「サービス」プロジェクトがあります。私はすべてを一緒に配線するためにスプリングを使用しています。application-context.xml でマップを作成し、それをクラスに挿入したいと考えています。Web アプリケーションを起動しようとすると、エラー メッセージが表示されます。
これが私のクラスです:
@Named("tranformer")
public class IdentifierTransformerImpl implements IdentifierTransformer {
private Map<String, String> identifierMap;
@Inject
public IdentifierTransformerImpl(
@Named("identifierMap")
final Map<String, String> identifierMap) {
this.identifierMap= identifierMap;
}
および application-context.xml:
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="
http://www.springframework.org/schema/util
http://www.springframework.org/schema/util/spring-util-3.0.xsd"
<util:map id="identifierMap" map-class="java.util.HashMap">
<entry key="Apple" value="fruit"/>
<entry key="BlackBerry" value="fruit"/>
<entry key="Android" value="robot"/>
<util:map>
<context:component-scan base-package="com.example" />
次のエラーが表示されます。
..... No matching bean of type [java.lang.String] found for dependency [map with value type java.lang.String]: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@javax.inject.Named(value=identifierMap)
これは、アプリケーションコンテキストで文字列を定義し、コンストラクターがそれをクラスに挿入するときに機能します。マップに対して同じことを行うにはどうすればよいですか?