Skip to content
/ oaw Public
forked from ctt-gob-es/oaw

Rastreador Observatorio de Accesibilidad Web

License

Notifications You must be signed in to change notification settings

istyf/oaw

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OAW

Rastreador Observatorio de Accesibilidad Web

Requeriments

Currently OAW is deployment under this configuration:

  • Java 1.8.0_202
  • Apache Tomcat 7
  • MySQL 5

This is a Maven projet that requieres version 3.0.0 or high

Instalation

MySQL Database

To fresh install execute the scripts locates in folder /portal/scripts from version 4.0.0 to higher version

Tomcat

Create a context configuration like this in server.xml:

<Context path="/oaw" reloadable="true">
    <Resource auth="Container" driverClassName="com.mysql.jdbc.Driver" type="javax.sql.DataSource" name="jdbc/oaw" url="jdbc:mysql://<server>:<port>/<schema>"
    maxActive="100"  maxIdle="10"  maxWait="-1" validationQuery="SELECT 1 as dbcp_connection_test"
    removeAbandoned="true" testOnBorrow="true"
    timeBetweenEvictionRunsMillis="60000" testWhileIdle="true"                                         
    defaultTransactionIsolation="READ_UNCOMMITTED" username="<username>" password="<password>"/>
</Context>
``
Note to chenge *url*, *user* and *password* values

# Application

The application code is distributed in several maven projects:
* common: library with common functions
* crawler: web crawler
* intavcore: analyzer core code
* oaw: "father" project to generate all the libraries and dependencies
* portal: web project of the accessibility observatory

To compile the application, we will use maven (version 3.0.0 or higher). It will be necessary to download a number of dependencies from the central repositories so it needs to be properly frozen. It may be necessary to configure the proxy or a mirror:

* https://maven.apache.org/guides/mini/guide-proxies.html
* https://maven.apache.org/guides/mini/guide-mirror-settings.html
To do this, inside the oaw directory we will execute the following command so that it builds us the complete project:
>	mvn clean install -P development -DskipTests
If everything goes well, a war will be generated in the portal/target folder which will be the one we should display this war in the webapps folder of the tomcat server. 

## Profiles

There are several parameters that are configurable by environment, as well as configuration files that depend on the environment. In the current project there are two default compilation profiles: development and integration. 

In the oaw project's pom.xml is reflected the configuration for each profile, being possible to create new ones or take advantage of the existing ones. There are also profiles in the portal project folder. 
It is necessary to review and adapt the configuration of the profiles if necessary.

## External properties

In the file /portal/profiles/<profile>/propertiesmanager.properties a series of properties files and their location are indicated. You should configure the files paths according to the information of this file.

* context.xml: Database connection parameters
* mail.properties: Mailing parameters
* basic.service.properties: Parameters of the mail sent by the diagnostic service
* check.descriptions.properties: Explanatory texts for problem solving included in the reports
* check.patterns.properties: Regural expressions and validation patterns


### Unsatisfied dependencies  in Maven Central

Some of the links are not available in Maven's central repository. They can be downloaded at the following links:1

* javax.jms:jms:jar:1.1: http://www.java2s.com/Code/Jar/j/Downloadjavaxjms11jar.htm
* javax.transaction:jta:jar:1.0.1B: http://www.java2s.com/Code/Jar/j/Downloadjta101bjar.htm

They need to be installed manually: https://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html 

About

Rastreador Observatorio de Accesibilidad Web

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 70.7%
  • JavaScript 21.1%
  • HTML 6.9%
  • CSS 1.0%
  • PLpgSQL 0.2%
  • TSQL 0.1%