Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When following this tutorial the one thing I really have a question on is the classPathEntry: http://blog.agdunn.net/?p=313

Notice his entry is hard wired to the full path of the mysql-connector jar:

Is there a way to specify the project root as a variable in this type of situation?

example:

Thanks!

share|improve this question

1 Answer

up vote 0 down vote accepted

I'm not sure I understand your question?! Do you want to know if you can eliminate to absolute specified path to the mysql-connector?

If so, the ibator documentation is of help. From the docs:

The <classPathEntry> Element

This element is optional and is not required if you setup the classpath externally to Ibator (e.g. with the -cp argument of the java command.

Which indicates you can do without if you are adding the mysql-connector somewhere else to the classpath, for example your startup script.

share|improve this answer
But either way I will have to have an absolute path? I am trying to avoid absolute paths so that this project can be highly portable... less little things to remember the better. – Kyle Jun 17 '09 at 21:05
No, you do not necessarily need an absolute path. I do not know how your application is started, but if your mysql.jar is packed with your application, then you can specify the relative path. I suppose you have more jar-files bundled; I suggest you put the mysql.jar there as well. – plep Jun 19 '09 at 16:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.