James Carman

Results 15 comments of James Carman

So, the best practice is to set up a token for each application that needs to use the configuration server? Just trying to understand the intent here. How do folks...

I believe I am facing a similar issue. I'm using a `@DataJpaTest` to run my configuration, not a full-blown spring boot test (this is a module with an auto configuration)....

@StefanPenndorf I'm already using the JUnit5 plugin. It works great! It just doesn't seem to pick up all available tests, unfortunately. Let me see if I can whip up an...

Any thoughts on this feature? For us, it's not terribly important that wAsync itself supports it, but it'd be pretty critical for the JS libraries. Is there a better work-around...

I guess the simplest way to describe what I'm looking to use a `methods` (the rest endpoints) expression as a starting point to define the classes for a `classes` (the...

I don't think the return type selector pattern exists, though. That's what I'm looking to add.

I'm selecting the methods of interest (are meta annotated with RequestMapping), but I want to apply ArchConditions to their return types. So, it might be nice to have a DSL...

The `areRestEndpoints()` method was just "syntactic sugar" for: ```java methods() .that() .areMetaAnnotatedWith(RequestMapping.class) ``` In hindsight, I probably should have just used that so as to not distract from the subject...

I'll see what I can do on a PR. I've looked through the codebase and am starting to find my way around. If you had some pointers on where to...

Indeed I didn't find the time, unfortunately. I think it could be useful, but if there are other ways already supported by the DSL and they're adequately expressive, I'd say...