How to make Database Bean a Managed Property

162 Views Asked by At

How do I add this Database class which is in another Java project(added as dependency to Dynamic web application) as a Managed Property ?

import java.sql.Connection;
import org.h2.jdbcx.JdbcConnectionPool;
import java.sql.SQLException;
    public class Database
    {
    private JdbcConnectionPool poolMgr;

    public Database(String path, String user, String password, int connectionPoolSize) throws SQLException
        {
            // Creates connection pool
            poolMgr = JdbcConnectionPool.create(path, user, password);
            poolMgr.setMaxConnections(connectionPoolSize);
        }

        public Connection getConnection() throws SQLException
        {
            return poolMgr.getConnection();
        }
    }

package com.project1.bean;
import com.project2.db.Database;
@ManagedBean
@RequestScoped
public class InputBean implements Serializable
{
@ManagedProperty("#{database}")
    private Database database;
 //getters and setters
}
0

There are 0 best solutions below