Skip to content

Commit

Permalink
- Ajout du @qualifier
Browse files Browse the repository at this point in the history
  • Loading branch information
jvk88511334 committed Aug 20, 2024
1 parent 29df624 commit 72dac8e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
package fr.abes.item.core.components;

import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.stereotype.Component;

@Component
public class Epntoppn {
private final JdbcTemplate baseXmlJdbcTemplate;

public Epntoppn(JdbcTemplate baseXmlJdbcTemplate) {
public Epntoppn(@Qualifier("baseXmlJdbcTemplate") JdbcTemplate baseXmlJdbcTemplate) {
this.baseXmlJdbcTemplate = baseXmlJdbcTemplate;
}

Expand Down

0 comments on commit 72dac8e

Please sign in to comment.