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