Skip to main content
summaryrefslogtreecommitdiffstats
blob: edf3c55eb85460661acd8e3a9c4ace69eda244bb (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.server.host": "127.0.0.1",
                    "jdbc.server.port": "8088",
                    "jdbc.server.db.data.path": "file:~/hsql/osee.hsql.db",
                    "jdbc.client.db.username": "public",
                    "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",
                        "jetty.jdbc.service"
                    ]
                }
            ]
        },    
    	  {
    		   "service.pid": "org.eclipse.osee.http.jetty.internal.osgi.JdbcJettyHttpService",
    		   "jetty.server.context.session.inactive.interval": 3600,
    		   "jetty.jdbc.cluster.name" : "OSEE",
    		   "jetty.jdbc.save.interval.secs" : 30
    	  }
    ]
}

Back to the top