|
|
|
@ -1,7 +1,5 @@
|
|
|
|
|
package com.fr.env; |
|
|
|
|
|
|
|
|
|
import com.fr.base.FRContext; |
|
|
|
|
import com.fr.base.ServerConfig; |
|
|
|
|
import com.fr.design.DesignerEnvManager; |
|
|
|
|
import com.fr.design.ExtraDesignClassManager; |
|
|
|
|
import com.fr.design.beans.BasicBeanPane; |
|
|
|
@ -444,38 +442,6 @@ public class RemoteEnvPane extends BasicBeanPane<RemoteDesignerWorkspaceInfo> {
|
|
|
|
|
new double[]{FILL} |
|
|
|
|
)); |
|
|
|
|
|
|
|
|
|
setDefaultAppAndServlet(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 设置 app 和 servlet 默认值 |
|
|
|
|
*/ |
|
|
|
|
private void setDefaultAppAndServlet() { |
|
|
|
|
setWrap(webAppNameInput, () -> FRContext.getCommonOperator().getAppName(), RemoteWorkspaceURL.DEFAULT_WEB_APP_NAME); |
|
|
|
|
setWrap(servletNameInput, () -> ServerConfig.getInstance().getServletName(), RemoteWorkspaceURL.DEFAULT_SERVLET_NAME); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void setWrap(final UITextField textField, final Supplier<String> supplier, final String defaultName) { |
|
|
|
|
new SwingWorker<String, Void>() { |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
protected String doInBackground() throws Exception { |
|
|
|
|
return supplier.get(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
protected void done() { |
|
|
|
|
String name = defaultName; |
|
|
|
|
try { |
|
|
|
|
name = get(); |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
FineLoggerFactory.getLogger().error(e.getMessage() , e); |
|
|
|
|
} |
|
|
|
|
if (StringUtils.isEmpty(textField.getText())) { |
|
|
|
|
textField.setText(name); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}.execute(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|