Refactoring Tool for Spring.NET

I can currently edit many Spring.NET XML files, and I find this work quite repetitive and, frankly boring.

Most of what I do is a kind of "refactoring" - a generalized declaration of XML for instances and "inheritance" from these generalized structures to declare more specific ones.

As I said, this is a silent type of task, but it requires a lot of attention and concentration, and it is easy to make a mistake.

I would suggest that a lot of editing Spring.NET xml files can be automated with a tool like ReSharper.

Can you recommend something?

+3
source share
2 answers

In the latest version of spring (1.3 - you can find files for ReSharper to help you with XML files, although I haven't used them yet.

You can also see Recoil , which tries to avoid xml files and allows you to configure a Spring.NET powered application through code.

+5
source

One of my clients uses Spring.NET quite widely. I found the process of modifying the configuration files, launching the application, and then getting the only, cryptic Spring.NET error at that time quite tedious. Therefore, I built an optimistic validator that now starts as a post-build step for all executable projects. This will not help you with the actual refactoring, but it will allow you to identify errors faster.

bash BitBucket. , , , .

+1

Source: https://habr.com/ru/post/1719352/


All Articles