0

What is the purpose of "context" in tag in Spring?

Why it's not just <property-placeholder>. What type of tag is this?

Ori Marko
  • 56,308
  • 23
  • 131
  • 233

1 Answers1

0

Spring divide parts using different schemes, this is part of the context schema:

The context tags deal with ApplicationContext configuration that relates to plumbing - that is, not usually beans that are important to an end-user but rather beans that do a lot of grunt work in Spring, such as BeanfactoryPostProcessors

Ori Marko
  • 56,308
  • 23
  • 131
  • 233