Search in sources :

Example 1 with GrupoAreaConhecimentoDTO

use of com.tomasio.projects.trainning.dto.GrupoAreaConhecimentoDTO in project trainning by fernandotomasio.

the class TeachingDocumentsServiceSimpleImpl method findAllGruposAreaConhecimento.

@Override
@Transactional(readOnly = true)
public GrupoAreaConhecimentoDTO[] findAllGruposAreaConhecimento() {
    AreaConhecimentoDAO dao = factory.getAreaConhecimentoDAO();
    GrupoAreaConhecimentoDTO[] gruposArray = null;
    try {
        List<GrupoAreaConhecimento> grupos = dao.findAllGruposAreaConhecimento();
        if (grupos != null) {
            gruposArray = new GrupoAreaConhecimentoDTO[grupos.size()];
            for (int i = 0; i < grupos.size(); i++) {
                gruposArray[i] = grupos.get(i).createDTO();
            }
        }
    } catch (DAOException ex) {
        throw new CoreException("Erro de de acesso ao banco de dados: " + ex.getMessage());
    }
    return gruposArray;
}
Also used : DAOException(com.tomasio.projects.trainning.exception.DAOException) CoreException(com.tomasio.projects.trainning.exeption.CoreException) GrupoAreaConhecimento(com.tomasio.projects.trainning.model.GrupoAreaConhecimento) GrupoAreaConhecimentoDTO(com.tomasio.projects.trainning.dto.GrupoAreaConhecimentoDTO) Transactional(org.springframework.transaction.annotation.Transactional)

Example 2 with GrupoAreaConhecimentoDTO

use of com.tomasio.projects.trainning.dto.GrupoAreaConhecimentoDTO in project trainning by fernandotomasio.

the class ImportAreasConhecimentoFromCSV method execute.

@Override
public void execute() {
    BufferedReader br = null;
    String line;
    String cvsSplitBy = "\\|";
    Map<String, GrupoAreaConhecimentoDTO> gruposMap = new HashMap<String, GrupoAreaConhecimentoDTO>();
    try {
        br = new BufferedReader(new FileReader(new ClassPathResource("areas_conhecimento_cnpq.csv").getFile()));
        while ((line = br.readLine()) != null) {
            // use comma as separator
            String[] data = line.split(cvsSplitBy);
            String numero = data[0];
            String nome = data[1];
            String grupo = data[2];
            AreaEnsinoDTO area = new AreaEnsinoDTO();
            area.setNome(nome);
            area.setNumero(numero);
            GrupoAreaConhecimentoDTO grupoAreaConhecimento = gruposMap.get(grupo);
            if (grupoAreaConhecimento == null) {
                GrupoAreaConhecimentoDTO g = new GrupoAreaConhecimentoDTO();
                g.setDescricao(grupo);
                Long groupId = service.createGrupoAreaConhecimento(g);
                g = service.findGrupoAreaConhecimento(groupId);
                gruposMap.put(grupo, g);
                area.setGrupoAreaConhecimento(g);
            } else {
                area.setGrupoAreaConhecimento(grupoAreaConhecimento);
            }
            service.createAreaConhecimento(area);
            System.out.println(numero + nome + grupo);
        }
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        if (br != null) {
            try {
                br.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
    System.out.println("Done");
}
Also used : HashMap(java.util.HashMap) BufferedReader(java.io.BufferedReader) FileNotFoundException(java.io.FileNotFoundException) FileReader(java.io.FileReader) IOException(java.io.IOException) GrupoAreaConhecimentoDTO(com.tomasio.projects.trainning.dto.GrupoAreaConhecimentoDTO) ClassPathResource(org.springframework.core.io.ClassPathResource) AreaEnsinoDTO(com.tomasio.projects.trainning.dto.AreaEnsinoDTO)

Example 3 with GrupoAreaConhecimentoDTO

use of com.tomasio.projects.trainning.dto.GrupoAreaConhecimentoDTO in project trainning by fernandotomasio.

the class GrupoAreaConhecimento method createDTO.

public GrupoAreaConhecimentoDTO createDTO() {
    GrupoAreaConhecimentoDTO dto = new GrupoAreaConhecimentoDTO();
    dto.setDescricao(descricao);
    dto.setId(id);
    return dto;
}
Also used : GrupoAreaConhecimentoDTO(com.tomasio.projects.trainning.dto.GrupoAreaConhecimentoDTO)

Aggregations

GrupoAreaConhecimentoDTO (com.tomasio.projects.trainning.dto.GrupoAreaConhecimentoDTO)3 AreaEnsinoDTO (com.tomasio.projects.trainning.dto.AreaEnsinoDTO)1 DAOException (com.tomasio.projects.trainning.exception.DAOException)1 CoreException (com.tomasio.projects.trainning.exeption.CoreException)1 GrupoAreaConhecimento (com.tomasio.projects.trainning.model.GrupoAreaConhecimento)1 BufferedReader (java.io.BufferedReader)1 FileNotFoundException (java.io.FileNotFoundException)1 FileReader (java.io.FileReader)1 IOException (java.io.IOException)1 HashMap (java.util.HashMap)1 ClassPathResource (org.springframework.core.io.ClassPathResource)1 Transactional (org.springframework.transaction.annotation.Transactional)1