18 Eylül 2017 Pazartesi

Eclipse

Proje Yapısı
Şöyledir
Project Name
    --> .settings
    --> .bin
    --> lib
    --> resources
    --> src
    --> .classpath
    --> .project
Dizinlerin açıklaması şöyle
.settings
 This file records project specific settings and workspace preferences.

.bin
 folder is usually where the compiled files are copied to.

lib
 contains external libraries that are used in your project (like Apache Commons)

resources
 the resources like images, text, pdf, audio, video are usually copied here

src
 the folder where the project's source files are located.

.classpath
 It contains information that the JDT feature needs in order to properly compile
the project: the project's source folders, the output folders , and classpath 
entries.

.project
 This file is maintained by the core Eclipse platform, and its goal is to
describe the project from a generic, plugin-independent Eclipse view. 
Automatic Updates
Kapatmak için şöyle yaparız.
Install/Update > Automatic Updates > Uncheck “Automatically find new updates”

ClassPath
Yeni bir dizin eklemek için şöyle yaparız.
Project -> Properties -> Build Path -> Configure Build Path -> Add Class Folder
Workspace'te olmayan yeni bir jar eklemek için şöyle yaparız.
Project -> Properties -> Build Path -> Configure Build Path -> Add Externak JARs
Add Jar ile farkı şöyle
Add Jar - to include jar files in you build path which are already present in your project.
Add External jar - used to include jar files which are 'outside' your eclipse project workspace folder. They will either be linked or copied.
Code Style
Süslü parantez olmayan kodların aynı satırda olması yani şöyle
if(true) return 0;
Şöyle yaparız.
Window -> Preferences -> Java -> Code Style -> Formatter -> Edit (Active profile) -> rename it -> Control Statements -> select "Keep 'then' statement on same line", "Keep 'else' statement..." and "Keep 'else if' on one line"; and press Ok.

Plugin
Başlatırken çalışacak pluginleri görmek için şöyle yaparız.
General > Startup and Shutdown

Server
Tomcat sunucusu tanımlamak için şöyle yaparız
Window->Show View-> Other->Server->New Server

Spellcheck
Kapatmak için şöyle yaparız.
General > Editors > Text Editors > Spelling : Disable spell checking


Hiç yorum yok:

Yorum Gönder