-
-
Notifications
You must be signed in to change notification settings - Fork 377
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes in Spring.Core required for Asp.Net Mvc Core #189
Comments
@lahma Maybe you have an idea which should be the direction of Spring.NET for ASP.NET core. There are multiple attitudes so far - replacing built-in IoC or just extending it. So far I've failed with writing any So my current workarounds are two:
|
@mashbrno , would you mind sharing your prototype? |
Finally I used a very simplistic approach which suffice my needs. There is an Activator using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Controllers;
using Spring.Context;
using Spring.Context.Support;
namespace Spring.AspNetCore
{
public class SpringControllerActivator : IControllerActivator
{
private IApplicationContext _ctx;
public object Create(ControllerContext actionContext)
{
var controllerType = actionContext.ActionDescriptor.ControllerTypeInfo.AsType();
return Context.GetObject(controllerType.Name);
}
public virtual void Release(ControllerContext context, object controller)
{
}
private IApplicationContext Context
{
get
{
if (_ctx == null)
_ctx = ContextRegistry.GetContext();
return _ctx;
}
}
}
} registred in and then two Service Locators to share object created by the built-in IoC and vice-versa. Globally stored variable When a view needs to access a service defined by Spring the other ServiceLocator returning Spring context objects is used. |
@mashbrno , When you say, service locator, You mean using IServiceProvider
|
By service locator I mean the pattern. In MVC views, where I need a Spring defined service I use: public class Startup
{
public override void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
ServiceProvider = app.ApplicationServices;
...
}
public static IServiceProvider ServiceProvider { get; private set; }
} |
@mashbrno , Does this still work?
|
Yes (I assume the |
@mashbrno , Have you tried running this cross platform? Our main motivation moving from spring to asp.net core was cross platform. |
If you mean containers then yes, I run this on both Windows and Kubernetes. As moving to ASP.NET Core is challenging itself, you should also consider to swap IoC as well. Autofac or SimpleInjector leverage tons of new features since .NET 3.5 like generics, lambdas, scopes. They're also proven to be faster. The reason why I stick with Spring.NET is the possibility to create deffered child application contexts. Superb Spring's Expression and Validation frameworks I believe can be used independently with any IoC. |
@mashbrno , What version of Spring.net are you using on Linux - source or Nuget link of spring.net please? We tried to build from source but faced compilation issues and lot of tests failing. |
I use my own set which are built from the public source. Just lahma was not producing any .NET Standard packages 2 years ago. Finally he manage to access the official repo, so they exist again. |
Adding my answer w.r.t. Linux usage here too.
Didn't know (or remember) there's Spring.FluentContext, ideally it would use the new 3.0 release if there's nothing blocking to do so anymore. |
@mashbrno , Microsoft recommends not to capture ServiceProvider as Static property |
@maulik-modi I completely agree and I mentioned my concerns in previous comments. But as my case there are very few objects and I use it to generate action links only it just works. The rest is handled by Spring. |
I believe this is the state of matters. |
I've tried to use Spring.Net together with Asp.Net Mvc . I've found that Asp.Net MVC tries to register open generics in the container which is not supported. Few examples of such types: Microsoft.Extensions.Logging.ILogger<>, IOptions<>, IOptionsFactory<>.
This is important because big part if not majority of .NET applications are Asp.Net MVC applications these days. Spring.NET is among few IoC frameworks which doesn't support open generics.
Unfortunately adding this to Spring.Core is far beyond my skills.
The text was updated successfully, but these errors were encountered: