Subversion Repositories bacoAlunos

Rev

Rev 2009 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2009 es 1
 
2
tomcat.home=C:/Users/danif/IdeaProjects/apache-tomcat-9.0.0.M6
3
#tomcat.common.lib=${tomcat.home}/common/lib
4
#tomcat.server.lib=${tomcat.home}/server/lib
5
tomcat.common.lib=${tomcat.home}/lib
6
tomcat.server.lib=${tomcat.home}/lib
7
tomcat.manager=http://localhost:8080/manager
8
9
 
10
tomcat.user=admin
11
tomcat.pass=admin
12
tomcat.war.filename=${app.path}.war
13
14
 
15
#example for ROOT:
16
#        tomcat.context.path.install=/
17
#        web.path=
18
#
19
#example for /mitra:
20
#        tomcat.context.path.install=/baco
21
#        web.path=/baco
22
#
23
web.path=/${app.path}
24
tomcat.context.path.install=/${app.path}
25
26
 
27
hibernate.show.sql=false
28
database.host=localhost
29
database.port=3306
30
database.catalog=teste
31
database.username=root
32
database.password=root
2019 es 33
database.connection.url=jdbc:mysql://${database.host}:${database.port}/${database.catalog}?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true
2009 es 34