출처: http://stackoverflow.com/questions/8302894/what-is-the-difference-between-runnable-jar-library-handling-options





  • Extract required libraries into JAR
  • Package required libraries into JAR
  • Copy required libraries into sub folder next to JAR

  1. Extract required libraries into JAR - Extracts the actual .class files from the libraries your app uses and puts those .class files inside the runnable JAR. So, the runnable JAR will not only contain the .class files of your application, but also the .class files of all the libraries your application uses.

  2. Package required libraries into JAR - Puts the actual JAR files of the libraries into your runnable JAR. Normally, a JAR file within a JAR file cannot be loaded by the JVM. But Eclipse adds special classes to the runnable JAR to make this possible.

  3. Copy required libraries into sub folder next to JAR - Keeps the library JARs completely separate from the runnable JAR, so the runnable JAR will only contain the .class files of your application.

Option #2 is convenient because it packages everything neatly into a single JAR, and keeps the library JARs separated from your application's .class files.

However, a downside to packaging everything inside of a single JAR (options #1 and #2) is that, if you update your application, then the user will have to download more data to update the application. If the JARs are kept separate, then the user would only have to download the JAR that contains your application code, instead of a single, massive JAR that contains your application code and all the library code.

  

Eclipse에서 Shift + Enter 기능

Posted by epicdev Archive : 2012. 1. 15. 21:53
Eclipse에서 Shift + Enter를 누르면 커서가 어디에 있건 바로 아랫줄에 빈라인을 만들어주고 그 위치로 커서가 이동한다.
별것 아닌것 같은 기능이지만서도, 정말 편리하다.
이 기능이 없으면 end를 누르고 enter를 쳐야되지만 이 기능을 사용하면 오른손을 end까지 움직이지 않고 위의 동작이 가능하다. 
  
 «이전 1  다음»