some changes
This commit is contained in:
parent
d4f77698c7
commit
2597cbeee5
@ -76,8 +76,7 @@ public class MainController {
|
||||
documentoVO.setCount(mainService.count());
|
||||
documentoVO.setDocumentos(mainService.findAllDocumento());
|
||||
if (archivos.length > 0) {
|
||||
documentoVO.setArchivos(new ArrayList<Archivo>());
|
||||
// Recupera la conficuración de Tika
|
||||
// Recupera la configuración de Tika
|
||||
TikaConfig tikaConfig = TikaConfig.getDefaultConfig();
|
||||
// Itera los archivos recibidos
|
||||
for (int i = 0; i < archivos.length; i++) {
|
||||
|
@ -1,5 +1,6 @@
|
||||
package com.manalejandro.arjion.vo;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import com.manalejandro.arjion.model.Archivo;
|
||||
@ -7,9 +8,9 @@ import com.manalejandro.arjion.model.Documento;
|
||||
|
||||
public class DocumentoVO {
|
||||
|
||||
private List<Archivo> archivos;
|
||||
private List<Archivo> archivos = new ArrayList<Archivo>();
|
||||
private long count;
|
||||
private List<Documento> documentos;
|
||||
private List<Documento> documentos = new ArrayList<Documento>();
|
||||
|
||||
/**
|
||||
* @return the archivos
|
||||
|
@ -37,7 +37,7 @@
|
||||
</section>
|
||||
<footer class="col-md-12 text-center">
|
||||
<span class="col-md-12">
|
||||
<button class="btn btn-primary" th:onclick="'window.location.pathname=\'' + @{/} + '\''">Volver</button>
|
||||
<a class="btn btn-primary" th:href="@{/}">Volver</a>
|
||||
</span>
|
||||
<span>2018</span>
|
||||
</footer>
|
||||
|
Loading…
Reference in New Issue
Block a user