Top "Path-variables" questions

PATH is an environment variable on various operating systems which specifies a list of directories where executable programs are located.

Handling ambiguous handler methods mapped in REST application with Spring

I tried to use some code as below: @RequestMapping(value = "/{id}", method = RequestMethod.GET) public Brand getBrand(@PathVariable Integer id) { …

spring rest path-variables request-mapping
PathVariable in Spring Controller

I'm trying to map the url /locations/{locationId}/edit.html - that seems to work with this code: @Controller @RequestMapping( "/…

java spring spring-mvc controller path-variables
Can Spring MVC's REST framework accept query strings rather than PathVariables?

In all the tutorials and articles I have read regarding Spring 3's RESTful additions to Spring MVC, I have only …

spring-mvc query-string spring-3 path-variables
Bind Path variables to a custom model object in spring

I have a class that models my request, something like class Venue { private String city; private String place; // Respective getters …

java spring path-variables
Spring Rest Controller, Path Variables on an overriden method's arguement

I have a controller annotated with @RestController and it implements an interface: public interface ContratEndpoint { String ROOT = "/api/contrats"; String …

java spring rest spring-data path-variables
python is not recognized as an internal or external command

I try to install this software. For that Python is required. I installed Python from here of name python-2.7.3.msi. …

python path-variables
cmd cannot find mvn command

I just installed Maven and added the \bin directory of maven to my path variables. When I try to use …

windows maven path-variables
I have 64 bit Java, but no jdk folder in my Program Files\Java folder?

I'm trying to set the JAVA_HOME environment variable - I need to set it to the 64 bit version. To …

java path-variables
How do I manipulate $PATH elements in shell scripts?

Is there a idiomatic way of removing elements from PATH-like shell variables? That is I want to take PATH=/home/…

unix shell idioms path-variables
@PathVariable in SpringBoot with slashes in URL

I have to get params from URL using @PathValiable in SpringBoot application. These params often have slashes. I don't have …

java rest url spring-boot path-variables