Showing
2 changed files
with
8 additions
and
8 deletions
... | @@ -6,7 +6,7 @@ import javax.persistence.EntityManager; | ... | @@ -6,7 +6,7 @@ import javax.persistence.EntityManager; |
6 | import javax.persistence.PersistenceContext; | 6 | import javax.persistence.PersistenceContext; |
7 | 7 | ||
8 | /** | 8 | /** |
9 | - Classe de configutation JPA, utilisée par tous les JpaRepository. | 9 | + * Classe de configutation JPA, utilisée par tous les JpaRepository. |
10 | */ | 10 | */ |
11 | public class JpaConfiguration { | 11 | public class JpaConfiguration { |
12 | 12 | ... | ... |
... | @@ -5,17 +5,17 @@ import org.apache.solr.client.solrj.impl.HttpSolrClient; | ... | @@ -5,17 +5,17 @@ import org.apache.solr.client.solrj.impl.HttpSolrClient; |
5 | 5 | ||
6 | import javax.enterprise.inject.Produces; | 6 | import javax.enterprise.inject.Produces; |
7 | 7 | ||
8 | -/* | 8 | +/** |
9 | - Classe de configuration pour SolrJ | 9 | + * Classe de configuration pour SolrJ |
10 | */ | 10 | */ |
11 | public class SolrJConfiguration { | 11 | public class SolrJConfiguration { |
12 | 12 | ||
13 | @Produces | 13 | @Produces |
14 | - /* | 14 | + /** |
15 | - SolrClient injectable pour les classes en ayant besoin | 15 | + * SolrClient injectable pour les classes en ayant besoin |
16 | - | 16 | + * |
17 | - @return SolrClient | 17 | + * @return SolrClient |
18 | - */ | 18 | + */ |
19 | public SolrClient createSolrClient() { | 19 | public SolrClient createSolrClient() { |
20 | return new HttpSolrClient.Builder("http://localhost:8983/solr/publishers").build(); | 20 | return new HttpSolrClient.Builder("http://localhost:8983/solr/publishers").build(); |
21 | } | 21 | } | ... | ... |
-
Please register or login to post a comment