Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
199 views

Cross-cutting concerns in JAX-RS

I'm looking for a mechanism within JAX-RS (JSR-311) to allow me to distill out some of my cross-cutting concerns specific to my app. For example, my app has certain context which is looked up or built ...
4
votes
6answers
3k views

Does groovy provide an include mechanism?

We are searching for an include mechanism for groovy scripts to have space for cross-cutting-concerns. In my example we have, web service endpoints as groovy scripts and want to log to our web ...
3
votes
3answers
131 views

How should I architect logging within my application?

So I've done a lot of research on this and haven't found any answers where I said, "yes, THAT". I'm hoping the ever-erudite StackOverflow crowd can help me out. I've run into this issue in a couple ...
3
votes
2answers
137 views

Application Frameworks - Buy, Build, or Assimilate?

I was curious as to what other shops are doing regarding base application frameworks? I look at an application framework as being able to provide additional or extended functionality to improve the ...
2
votes
2answers
57 views

CQRS applying cross cutting concerns such as security

Suppose I have a complex system where there large trees of people. Simple thoughts are employees / manager relationship, many employees report to one manager. Now in addition to manager there are ...
2
votes
2answers
84 views

asp.net MVC 2 - most elegant way of isolating guard code - guarding against null controller parameters

Hi all I have a very simple problem, but I'm looking for the 'best' solution to the following: I have multiple controller actions something like this: public ActionResult ...
2
votes
1answer
129 views

Refactoring: Cross Cutting Concerns workaround

Is there a workaround for implementing cross cutting concerns without going into aspects and point cuts et al.? We're in Spring MVC, and working on a business app where it's not feasible to go into ...
1
vote
1answer
258 views

AOP Separating Cross-cutting Concerns

I'm trying to start taking advantage of Aspect-Oriented programming for repetitive tasks. I'm not sure how to go about separating concerns. I'm using C# and for AOP I'm using Castle.DynamicProxy ...
1
vote
1answer
80 views

Namespace Organization - AOP Validators

I have started using aspects for parameter validation in our development framework. It works nicely, and I enjoy not littering the first half of a public method with validation code. What I am ...