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 7506623
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T22:19:16+00:00 2026-05-29T22:19:16+00:00

How can we create a bean using FactoryMethod with variable arguments. public class ConnectionFactoryClass

  • 0

How can we create a bean using FactoryMethod with variable arguments.

 public class ConnectionFactoryClass {

    public static Connection composeConnection(final Property... properties) {
       ...
    }
 }

bean.xml

  <bean id="Connection"
    class="com.example.ConnectionFactoryClass"
    factory-method="composeConnection"
    scope="singleton">
    <constructor-arg ref="Driver"/>
    <constructor-arg ref="Pool"/>
  </bean>

Spring is giving me an error saying,

org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘Connection’ defined in file [./beans.xml]: No matching factory method found: factory method ‘composeConnection’

  • 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-05-29T22:19:16+00:00Added an answer on May 29, 2026 at 10:19 pm

    Try the following:

    <bean id="Connection"
        class="com.example.ConnectionFactoryClass"
        factory-method="composeConnection"
        scope="singleton">
        <constructor-arg> 
            <array>
            <bean ref="Driver" />
                <bean ref="Pool" />
            </array>
        </constructor-arg>
      </bean>
    

    I think you are having a problem because the JVM turns a var arg params into an Object Array and you need to pass in a single paramater to the constructor which is the array of objects. I have not tried the above xml so I might have typos in it, but something like the above should work.

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

Sidebar

Related Questions

How can I create a bean of type Class? I found a way using
I can create the following and reference it using area[0].states[0] area[0].cities[0] var area =
I can create a sparse php array (or map) using the command: $myarray =
I want to create a component which can be used like: <mc:chart data=#{bean.data} width=200
I'm curious as to whether one can define a Java class purely using a
Does anyone know if there any way that I can programmatically create a bean
Is it correct that one can create spring beans using just the @Component annotation
I've a Map in a bean as follows: public class TaskListData { private Map<String,
Can you create a List in a Spring application-context.xml file without using the <list>
I can create a menu item in the Windows Explorer context menu by adding

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.