简体   繁体   中英

How to see the commands issued by Eclipse for my Java project?

I am using Eclipse Luna. I created a simple Java project named "JP_Test" with only 1 class:

package com.srh.model;

import java.io.Serializable;

public class UserModel implements Serializable {
    private String userName;
    private String password;

    public String getUserName() {
        return userName;
    }
    public void setUserName(String userName) {
        this.userName = userName;
    }
    public String getPassword() {
        return password;
    }
    public void setPassword(String password) {
        this.password = password;
    }
}

I am showing the Console view (using Window --> Show View ).

Then I build the project (using Project --> Build Project ). I was hoping to see Eclipse issuing javac command in the Console view. But nothing shows up.

How can I see the commands issued by Eclipse for my Java project in this case?

Eclipse doesn't use javac to compile, it uses its own compiler and there are no commands to show.

Why would you want to see them anyway?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM