Skip to main content
summaryrefslogtreecommitdiffstats
blob: cbed8580e8b5ceb83b43d2955cc03558d2c66de9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
    "config": [
        {
            "service.pid": "org.eclipse.osee.jdbc.internal.osgi.JdbcComponentFactory",
            "jdbc.service": [
                {
                    "service.id": "1001",
                    "jdbc.client.driver": "org.postgresql.Driver",
                    "jdbc.client.db.uri": "jdbc:postgresql://localhost:5432/OSEE",
                    "jdbc.client.db.username": "osee",
                    "jdbc.client.db.password": "osee",
                    "jdbc.client.connection.pool.enabled": "true",
                    "jdbc.client.connection.pool.max.active.connections": "100",
                    "jdbc.client.connection.pool.max.idle.connections": "100",
                    "osgi.binding": [
                        "activity.jdbc.service",
                        "orcs.jdbc.service",
                        "account.jdbc.service",
                        "oauth.jdbc.service",
                        "app.server.jdbc.service"
                    ]
                }
            ]
        },
        {
    		   "service.pid": "org.eclipse.osee.http.jetty.internal.osgi.JettyHttpService",
    		   "jetty.server.context.session.inactive.interval": 3600,
    		   "jetty.server.session.manager.factory": "JDBC",
    		   "jetty.jdbc.cluster.name" : "OSEE",
    		   "jetty.jdbc.save.interval.secs" : 30
    	  } 
    ]
}

Back to the top