Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8268465
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T05:53:54+00:00 2026-06-08T05:53:54+00:00

I have DAO when I make DAO Serializable I get exception : Cannot serialize

  • 0

I have DAO when I make DAO Serializable I get exception :

 Cannot serialize session attribute com.sun.faces.renderkit.ServerSideStateHelper.LogicalViewMap for session C354B1B6053088CBB8E8A933E5F8EAE0
    java.io.NotSerializableException: org.apache.tomcat.dbcp.dbcp.PoolingDataSource$PoolGuardConnectionWrapper

my DAO:

public boolean getConnection() {
        try {
            InitialContext context = new InitialContext();
            DataSource dataSource = (DataSource) context.lookup("java:/comp/env/jdbc/Orcl");
            connection = dataSource.getConnection();
            return true;
        } catch (SQLException ex) {
            Logger.getLogger(KPIDAO.class.getName()).log(Level.SEVERE, null, ex);
            return false;
        } catch (NamingException ex) {
            Logger.getLogger(KPIDAO.class.getName()).log(Level.SEVERE, null, ex);
            return false;
        }
    }

In controller (@ViewScoped) :

KPIDAO kpiDAO = new KPIDAO();

Context.xml

<Resource 
        name="jdbc/Orcl" 
        auth="Container"
        type="javax.sql.DataSource" 
        username="username" 
        password="password"
        driverClassName="oracle.jdbc.OracleDriver" 
        url="jdbc:oracle:thin:@192.168.1.10:1521:XE"
        maxActive="8" 
   />

What is proper solution ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T05:53:58+00:00Added an answer on June 8, 2026 at 5:53 am

    For example

    @ViewScoped
    public class ViewBean implements Serializable{
      private transient KPIDAO kpiDAO = //get singleton instance from factory
      //also dont keep connection object as instance variable, fetch it from pool in methods and perform db operations.
    
      private void readObject(java.io.ObjectInputStream stream)
            throws java.io.IOException, ClassNotFoundException
        {
            stream.defaultReadObject();
    
            // assign reference manually.
            this.kpiDAO  =  //get from factory;
        }
    
    private void writeObject(java.io.ObjectOutputStream stream)
            throws java.io.IOException
        {
    
            stream.defaultWriteObject();
        }
    }
    

    Note: In case you move connection object from instance variable to
    local method variables, you won’t need above code too.

    Update:

    From your code snippet and exception

    connection = dataSource.getConnection();
    

    It seems its an instance variable.

    i.e.

    public class Dao {
     private Connection connection; //instance variable
    }
    

    change it to

    public class Dao {
    
     public List<Bean> getResult(){
      //local method variable
      Connection connection = //get from pool
      //perform db operation with connection object
     }
    

    }

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

do i have to open and close session and transcation in each function (make
I have this DAO.. public class AreaDAO { private Database database; public AreaDAO(Database database)
I have a DAO class which I am using to do database operations. I
I have a DAO class which I'm using to try select/update/insert with hibernate and
I have a dao jar file that contains all the domain objects and service
Is it better to encapsulate the connection inside a DAO, ie have the DAO
I have a number of DAO classes that extend SqlMapClientDaoSupport, and call getSqlMapClientTemplate() to
I have following code: //preparing DAO objects FileSystemXmlApplicationContext context = new FileSystemXmlApplicationContext(test-context.xml); surveyDao =
I have this inside my DAO public String CSNSurvey() { StringBuilder mailstr = new
I have a service method that calls a DAO which then returns an object

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.