webjars and some changes

Este commit está contenido en:
manalejandro
2018-07-12 22:38:36 +02:00
padre b260838e0c
commit ce29f8beed
Se han modificado 9 ficheros con 108 adiciones y 2 borrados

Ver fichero

@@ -1,9 +1,13 @@
server.servlet.context-path=/arjion
server.port=8080
elasticsearch.clustername=development
elasticsearch.clustername=elasticsearch
elasticsearch.host=localhost
elasticsearch.port=9300
elasticsearch.nodename=arjion
arjion.indexName=documentos
arjion.documentType=documento
spring.main.allow-bean-definition-overriding=true
spring.main.allow-bean-definition-overriding=true
spring.thymeleaf.enabled=true
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
spring.thymeleaf.cache=false

Ver fichero

@@ -0,0 +1,16 @@
{
"documento": {
"properties": {
"@timestamp": {
"type": "date",
"format": "strict_date_optional_time||epoch_millis"
},
"@version": {
"type": "keyword"
},
"id": {
"type": "long"
}
}
}
}

Ver fichero

@@ -0,0 +1,6 @@
{
"index": {
"number_of_shards": "5",
"number_of_replicas": "1"
}
}

Ver fichero

@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Error</title>
</head>
<body>
</body>
</html>

Ver fichero

@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Arjion</title>
<link rel="stylesheet" href="webjars/bootstrap/3.3.7-1/css/bootstrap.min.css">
<script src="webjars/jquery/3.1.1-1/jquery.min.js"></script>
<script src="webjars/bootstrap/3.3.7-1/js/bootstrap.min.js"></script>
</head>
<body>
</body>
</html>