Tagged Questions
The service-layers tag has no wiki summary.
5
votes
2answers
87 views
Reduce frequency of deployments in a Java web application using Spring-MVC
Is there a simple way to have your "Service Layer" deployed separately from your web layer, so that I can reduce the number of times per week that I have to, package, build and deploy the entire WAR ...
1
vote
3answers
152 views
Access Repository through Service or directly?
is it a good coding standard to allow ASP.NET MVC controller actions to access a repository directly (even though a service layer is present for the heavy lifting, e.g. LoginService.Authorize() ) to ...
0
votes
1answer
105 views
How much resposibility should my repository/service have?
I have the following objects:
Person <- Contact -> ClientsPerson <- Client
I'm using the repository pattern with a service layer. But already here, being a perfectionist, I'm lost!
I also ...