I have a java project in eclipse which are using tomcat. This project has some dependency over c library. When i start tomcat开发者_开发百科 using startup.sh it is working fine but when i try to start tomcat from eclipse it gives me error while starting itself. Is there any way i can start tomcat from eclipse as if i start it from startup.sh, i not able to set any breakpoint.
If any of your Java code is using a native (C) library, that library (.dll or .so file) must be included in the path specified by the Java system property java.library.path. There's a few ways to go about doing that, but this seems like the most logical: How to set the java.library.path from Eclipse
精彩评论