webjars and some changes
Este commit está contenido en:
@@ -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
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"documento": {
|
||||
"properties": {
|
||||
"@timestamp": {
|
||||
"type": "date",
|
||||
"format": "strict_date_optional_time||epoch_millis"
|
||||
},
|
||||
"@version": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"id": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"index": {
|
||||
"number_of_shards": "5",
|
||||
"number_of_replicas": "1"
|
||||
}
|
||||
}
|
||||
10
src/main/resources/templates/error.html
Archivo normal
10
src/main/resources/templates/error.html
Archivo normal
@@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Error</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
13
src/main/resources/templates/index.html
Archivo normal
13
src/main/resources/templates/index.html
Archivo normal
@@ -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>
|
||||
Referencia en una nueva incidencia
Block a user