24.5k views
5 votes
How can you provide a scalar or literal value for injection into the property of a Spring bean?

User Otusweb
by
7.6k points

1 Answer

3 votes

Final answer:

You can provide a scalar or literal value for injection into the property of a Spring bean by using the value attribute in the bean configuration file.

Step-by-step explanation:

To provide a scalar or literal value for injection into the property of a Spring bean, you can use the value attribute in the bean configuration file. This attribute allows you to specify a constant value for the property.

  1. First, define the property in the bean configuration file using the property tag.
  2. Inside the property tag, use the value attribute to specify the scalar value.
  3. Example: <property name="propertyName" value="scalarValue" />
User Xzhu
by
7.3k points