Commit 6a1cf7a2d8cdea1c48f75649b51e3e786606d31b
0 parents
Exists in
master
Submissão Inicial
Showing
544 changed files
with
25355 additions
and
0 deletions
Show diff stats
Too many changes.
To preserve performance only 100 of 544 files displayed.
1 | +++ a/META-INF/context.xml | |
... | ... | @@ -0,0 +1,12 @@ |
1 | +<?xml version="1.0" encoding="UTF-8"?> | |
2 | +<Context path="/sigafrota"> | |
3 | + <Resource | |
4 | + name="jdbc/sigafrota" | |
5 | + auth="Container" | |
6 | + type="javax.sql.DataSource" | |
7 | + username="sigafrota" | |
8 | + password="@2011" | |
9 | + driverClassName="org.postgresql.Driver" | |
10 | + url="jdbc:postgresql://localhost:5432/sigafrota"/> | |
11 | + | |
12 | +</Context> | ... | ... |
1 | +++ a/README.md | ... | ... |
1 | +++ a/WEB-INF/classes/META-INF/orm.xml | |
... | ... | @@ -0,0 +1,3 @@ |
1 | +<?xml version="1.0" encoding="UTF-8"?> | |
2 | +<entity-mappings xmlns="http://java.sun.com/xml/ns/persistence/orm" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence/orm http://java.sun.com/xml/ns/persistence/orm_1_0.xsd" version="1.0"> | |
3 | +</entity-mappings> | ... | ... |
1 | +++ a/WEB-INF/classes/META-INF/persistence.xml | |
... | ... | @@ -0,0 +1,56 @@ |
1 | +<?xml version="1.0" encoding="UTF-8"?> | |
2 | +<persistence version="1.0" | |
3 | + xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
4 | + xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"> | |
5 | + <persistence-unit name="sigafrota" transaction-type="RESOURCE_LOCAL"> | |
6 | + <provider>org.hibernate.ejb.HibernatePersistence</provider> | |
7 | + <class>br.org.sigafrota.entity.User</class> | |
8 | + <class>br.org.sigafrota.entity.Pessoa</class> | |
9 | + <class>br.org.sigafrota.entity.Posto</class> | |
10 | + <class>br.org.sigafrota.entity.PostoServico</class> | |
11 | + <class>br.org.sigafrota.entity.PostoServicoVeiculo</class> | |
12 | + <class>br.org.sigafrota.entity.Role</class> | |
13 | + <class>br.org.sigafrota.entity.Motorista</class> | |
14 | + <class>br.org.sigafrota.entity.Permissao</class> | |
15 | + <class>br.org.sigafrota.entity.SolicitacaoVeiculo</class> | |
16 | + <class>br.org.sigafrota.entity.RegistroVeiculo</class> | |
17 | + <class>br.org.sigafrota.entity.Infracao</class> | |
18 | + <class>br.org.sigafrota.entity.Modelo</class> | |
19 | + <class>br.org.sigafrota.entity.Marca</class> | |
20 | + <class>br.org.sigafrota.entity.Multa</class> | |
21 | + <class>br.org.sigafrota.entity.Especie</class> | |
22 | + <class>br.org.sigafrota.entity.Veiculo</class> | |
23 | + <class>br.org.sigafrota.entity.TipoServico</class> | |
24 | + <class>br.org.sigafrota.entity.TipoCombustivel</class> | |
25 | + <class>br.org.sigafrota.entity.Cota</class> | |
26 | + <class>br.org.sigafrota.entity.DiarioBomba</class> | |
27 | + <class>br.org.sigafrota.entity.Bomba</class> | |
28 | + <class>br.org.sigafrota.entity.LogUsuario</class> | |
29 | + <class>br.org.sigafrota.entity.UA</class> | |
30 | + <class>br.org.sigafrota.entity.UG</class> | |
31 | + <class>br.org.sigafrota.entity.NumeroMotor</class> | |
32 | + <class>br.org.sigafrota.entity.Oficina</class> | |
33 | + <class>br.org.sigafrota.entity.RequisicaoManutencao</class> | |
34 | + <class>br.org.sigafrota.entity.ItemRequisicao</class> | |
35 | + <class>br.org.sigafrota.entity.SolicitacaoLubrificante</class> | |
36 | + <class>br.org.sigafrota.entity.Abastecimento</class> | |
37 | + <class>br.org.sigafrota.entity.AtendimentoAbastecimento</class> | |
38 | + <class>br.org.sigafrota.entity.Parametro</class> | |
39 | + <class>br.org.sigafrota.entity.Transmissao</class> | |
40 | + <class>br.org.sigafrota.entity.Ponto</class> | |
41 | + <class>br.org.sigafrota.entity.Area</class> | |
42 | + <class>br.org.sigafrota.entity.Message</class> | |
43 | + <class>br.org.sigafrota.entity.Page</class> | |
44 | + <class>br.org.sigafrota.entity.Rastreador</class> | |
45 | + <properties> | |
46 | + <property name="hibernate.connection.datasource" value="java:/comp/env/jdbc/sigafrota" /> | |
47 | + <property name="hibernate.dialect" value="org.hibernate.dialect.PostgreSQLDialect" /> | |
48 | + <property name="hibernate.cache.provider_class" value="org.hibernate.cache.HashtableCacheProvider"></property> | |
49 | + <property name="hibernate.cache.use_second_level_cache" value="true" /> | |
50 | + <property name="hibernate.cache.use_query_cache" value="true" /> | |
51 | + <property name="hibernate.format_sql" value="false" /> | |
52 | + <property name="hibernate.show_sql" value="false" /> | |
53 | + <property name="hibernate.current_session_context_class" value="thread" /> | |
54 | + </properties> | |
55 | + </persistence-unit> | |
56 | +</persistence> | |
0 | 57 | \ No newline at end of file | ... | ... |
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/AtendimentoAbastecimentoBean.class
0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/AutorizacaoAbastecimentoBean.class
0 → 100644
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/RelatorioMonitoramentoBean.class
0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/RequisicaoManutencaoBean$1.class
0 → 100644
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/SolicitacaoLubrificanteBean$1.class
0 → 100644
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/SolicitacaoLubrificanteBean.class
0 → 100644
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
WEB-INF/classes/br/org/sigafrota/bean/VeiculosInconsistentesBean.class
0 → 100644
No preview for this file type
1 | +++ a/WEB-INF/classes/br/org/sigafrota/bean/log4j.properties | |
... | ... | @@ -0,0 +1,9 @@ |
1 | +log4j.rootLogger=ERROR, FILE | |
2 | +log4j.appender.FILE=org.apache.log4j.DailyRollingFileAppender | |
3 | +log4j.appender.FILE.DatePattern='.'yyyy-MM-dd | |
4 | +log4j.appender.FILE.File=./logs/fortaleza.log | |
5 | +log4j.appender.FILE.layout=org.apache.log4j.PatternLayout | |
6 | +log4j.appender.FILE.layout.ConversionPattern=%d [%t] %-5p %c - %m%n | |
7 | + | |
8 | +log4j.logger.org.springframework.security=INFO, stdout | |
9 | +log4j.appender.stdout=org.apache.log4j.ConsoleAppender | ... | ... |
WEB-INF/classes/br/org/sigafrota/conversores/CombustivelConverter.class
0 → 100644
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
WEB-INF/classes/br/org/sigafrota/conversores/PostoServicoConverter.class
0 → 100644
No preview for this file type
No preview for this file type
WEB-INF/classes/br/org/sigafrota/conversores/TipoServicoConverter.class
0 → 100644
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
WEB-INF/classes/br/org/sigafrota/entity/AtendimentoAbastecimento.class
0 → 100644
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type