Jean-Francois Leveque

Suppression ajout accidentel.

tee creeV3Country.log
create table Country (
countryId int(11) NOT NULL AUTO_INCREMENT,
countryName varchar(100) DEFAULT NULL,
PRIMARY KEY ('countryId')
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- create table Country (
-- countryId int(11) NOT NULL AUTO_INCREMENT,
-- countryName varchar(100) DEFAULT NULL,
-- PRIMARY KEY ('countryId')
-- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
insert into Country (countryId, countryName)
select ID_PAYS, LIB_PAYS from pays;
select ID_PAYS, LIB_PAYS from v2.pays;
show create table Country;
\ No newline at end of file
-- show create table Country;
\ No newline at end of file
......
package org.legrog.configuration;
/**
* Created by leveque on 31/01/17.
*/
public class SolrJConfiguration {
}
/*
package org.legrog.configuration;
import org.apache.solr.client.solrj.impl.HttpSolrClient;
import org.springframework.data.solr.core.SolrOperations;
import org.springframework.data.solr.core.SolrTemplate;
import javax.enterprise.context.ApplicationScoped;
import javax.enterprise.inject.Produces;
*/
/*
public class SolrTemplateProducer {
@Produces
@ApplicationScoped
public SolrOperations createSolrTemplate() {
return new SolrTemplate(new HttpSolrClient.Builder("localhost:8983/solr").build());
}
}
*/