Questions tagged [resolver]

363 questions
0
votes
0 answers

Arquillian: Maven resolver result

The result of the call to Maven.resolver().resolve("groupId:artifactId:version"). withoutTransitivity().asSingleFile(); e.g. Maven.resolver().resolve("myProjectGroupId:myProject:1.1") .withoutTransitivity().asSingleFile(); results sometimes…
Scholis
  • 61
  • 5
0
votes
0 answers

Karma unit test controller becomes undefined after adding resolver in ui-router

In the configure.js: $stateProvider.state('home', { url: '/', views: { 'nav-menu': { templateUrl: '/views/nav-menu.ng', controller: 'myApp.NavMenuController', controllerAs:…
0
votes
0 answers

Ember resolve component manually

I render a component in Ember JS based on some property. Now the property changed. How can I re-render the component? Here is my component structure: Component type1 component.js template.hbs type2 …
Aditya Kappagantula
  • 564
  • 1
  • 7
  • 21
0
votes
1 answer

Spring StandardServletMultipartResolver

I was wondering where is located the code that automatically create a temporary file when you send a multipart request using StandardServletMultipartResolver? Can i disable that behavior? I want to decide how its going to be stored and where. I…
user3288840
  • 69
  • 2
  • 7
0
votes
1 answer

Optimizing PHP Code and Storing JSON response to parse it faster?

so I'm trying to figure out why does this PHP code takes too long to run to output the results. for example this is my apitest.php and here is my PHP Code
0
votes
0 answers

MySql Parent and child relation

I have two tables one table contain category name,category_id other table contain category_id and parent_id. so the data is stored like that for particular category_id we need to find parent_id until parent_id is null. It simply like…
0
votes
0 answers

Ivy Settings - Changing the way conflicts are resolved

We setup Ivy in such a way that all projects on trunk or a particular branch have the same version number for our foundation classes jars. For example, trunk is set, so all jars are 5.4, and all projects that use those jars request the 5.4 jars. We…
David W.
  • 105,218
  • 39
  • 216
  • 337
0
votes
2 answers

Exception Listener with Jersey

I have a Jersey (2.14) application, which works all right. I have some services running there. Now I'd like to configure the ServletContainer so, that any not catched Exceptions should be intercepted and logged or emailed somewhere. I have already…
Asturio
  • 535
  • 7
  • 23
0
votes
1 answer

Spring redirect: prefix issue

I have an application which uses Spring 3. I have a view resolver which builds my views based on a String. So in my controllers I have methods like this one. @RequestMapping(...) public String method(){ //Some proccessing return…
Javi
  • 19,387
  • 30
  • 102
  • 135
0
votes
0 answers

Resolving DTD paths using lxml

I have a set of DTD's which internally call other DTD's. All of these files are currently being stored in the main directory of my project. My project is starting to look really clogged, so I was hoping to move the DTD's to a new folder. I found a…
drowningincode
  • 1,115
  • 1
  • 12
  • 19
0
votes
1 answer

What is a resolver (specifically in C#)

new to C# (and programming in general) and have a question about Resolvers: What does it mean to Resolve an assembly (i.e. a .dll file)? Basically I am trying to integrate our custom-made CRM with Sage and am told that before I can connect to the…
user3882319
  • 1
  • 1
  • 2
0
votes
1 answer

How do I setup HTTP artifact binding in ADFS 3.0?

I am trying to understand what are the steps involved in enabling HTTP artifact binding in ADFS 3.0 that could resolve my SAML assertion sending via GSA (Google Search Appliance). I need to provide an "Artifact Resolver URL" to GSA. so I need to…
0
votes
1 answer

Local File Resolution against local Maven repository

I have put a local repo resolver line into the build.sbt: resolvers += "Local Repo" at "file://" + Path.userHome.absolutePath + "/.m2/repository" Also I installed a file locally using mvn install mvn…
WestCoastProjects
  • 58,982
  • 91
  • 316
  • 560
0
votes
0 answers

Spring WebArgumentResolver not resolving?

I'm using custom argument resolvers with spring 3.2.4 and everything works fine until now. every now and then I notice that one of my servers is not resolving arguments properly and I was wondering, is there anything I'm doing wrong in the…
Yoni Moses
  • 173
  • 1
  • 13
0
votes
1 answer

Spring XML View Resolver not working

Using Spring MVC i want to create a PDF from the model. I have created a controller as below @Controller @RequestMapping("en/pdfdoc.gov") @Transactional(propagation=Propagation.SUPPORTS) public class PDFDocumentController extends SecurityController…
Subrat nayak.
  • 405
  • 1
  • 7
  • 25