user816513
user816513

Reputation: 93

Spring Custom Namespace - Use Cases

I'm trying to understand where Spring custom namespace can help -- like simplifying somethings in a large application.

The last comment on this blog was intriguing:

I'm building out a namespace at work for making service and bean management more standardized within the development group. This also tends to make things simpler and not have them worry if I change the standard for a bean definition or maybe use different factories for different types of services in the future. I'm still figuring out how to best utilize this new mechanism, though.

Trying to understand how custom namespace helps in bean management.

If you developed custom namespaces, could you please post how custom namespaces helped in your development.

Upvotes: 4

Views: 1333

Answers (2)

praveenj
praveenj

Reputation: 359

Check this github repo for a working example of spring's custom namespace handling.

Or this article on spring io.

Upvotes: 0

abalogh
abalogh

Reputation: 8281

This blog has a great post about using custom namespaces and gives you a few examples as well.

Upvotes: 4

Related Questions