Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
9answers
4k views

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/joe/bin:/usr/local/bin:/usr/bin:/bin:/path/to/app/bin:. and remove or replace the ...
9
votes
4answers
740 views

Is there a good tool for managing the Windows Environment Variables?

The one that comes with Windows XP is not that great. The text field is small, everything's on one line, and it's hard to edit. Does something better exist? If not, where should I start to make one?
3
votes
9answers
3k views

How to keep from duplicating path variable in csh

It is typical to have something like this in your cshrc file for setting the path: set path = ( . $otherpath $path ) but, the path gets duplicated when you source your cshrc file multiple times, ...
2
votes
3answers
5k views

javac not working in windows command prompt

I'm trying to use javac with the windows command prompt, but its not working. After adding the directory "C:\Program Files\Java\jdk1.6.0_16\bin\" to the end of the environment path variable, the java ...
1
vote
2answers
469 views

Can @PathVariable return null if it's not found?

Is it possible to make the @PathVariable to return null if the path variable is not in the url? Otherwise I need to make two handlers. One for /simple and another for /simple/{game}, but both do the ...
1
vote
0answers
201 views

URI Templates @RequestMapping problems

I want to use URI templates in the @RequestMapping path value, but I've some problem. I receive Status 404 if @RequestMapping value is /finduser/{username} but if I change in /{username} everything is ...
1
vote
2answers
715 views

Update Windows path variable when Java is updated automatically?

This question asks how to setup your path variable in Windows to include the Java bin directory allowing you to use the javac command from the prompt. The solution posted to this question states you ...
1
vote
1answer
700 views

FDT / Eclipse : path variable

I am trying to create a script that would list all the linked libraries in an FDT project and their corresponding svn repositories. My problem : I was not able to find the file on my system where ...
0
votes
2answers
25 views

PathVariable in Spring Controller

I'm trying to map the url /locations/{locationId}/edit.html - that seems to work with this code: @Controller @RequestMapping( "/locations" ) public class LocationController { @RequestMapping( value ...
0
votes
0answers
15 views

Eclipse conditional path variables

Is it possible to set conditional path variables in Eclipse? This would be useful for instance for a custom builder (which is stored with the project in Indigo - I think this wasn't the case in old ...
0
votes
2answers
151 views

<mvc:resources> and PathVariable

Please help me to resolve the following issue! I have the config: <mvc:resources location="/images/" mapping="/images/**"/> <mvc:resources location="/css/" mapping="/css/**"/> ...
0
votes
1answer
70 views

@PathVariable equivalent for Spring 2.5

I am working on some legacy code running Spring 2.5. I need to use something similar to Spring 3's @PathVariable...anything similar available in Spring 2.5?
0
votes
1answer
65 views

How to get PathVariable (String) in a Controller method

@RequestMapping(value = "/user/search/{email}") public String auditUseremail(@PathVariable("email") String email,Map<String, Object> map) { System.out.println(email); } this is my ...
0
votes
0answers
41 views

How to access a PathVariable from an aspect?

I'm using Spring-MVC and aspectJ. I'm trying to create an advice that validates a parameter that is received as a PathVariable. To be more specific, the PathVariable is a user Id and I want to check ...
0
votes
1answer
151 views

@PathVariable and @RequestMapping issues

I would like to send only the requests ending in .html through dispatcher-servlet and all other requests handled directly, so I have mapped that in web.xml.. <servlet-mapping> ...
0
votes
3answers
239 views

Spring 3.0 multiple @PathVariable's problem

In my application I have to compare 3 products for that in my controller I mapped request as @RequestMapping(value = "/products/{proId1}Vs{proId2}Vs{proId3}", method = RequestMethod.GET) public ...
0
votes
2answers
659 views

c++ cygwin and eclipse - binary not found error

I've spent hours looking up how to fix this problem but nothing has worked. I have eclipse Indigo with CDT and ive downloaded cygwin and packages such as g++, make file, etc. When I try to execute any ...
0
votes
2answers
44 views

What do I need to read to understand $PATH

I'm new to programming/development and I'm having trouble installing development tools.One of my biggest problems when installing something is understanding the shell or terminal (are they the same ...