You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
399 B
17 lines
399 B
6 years ago
|
package com.fr.learn;
|
||
|
|
||
|
import com.fr.start.Designer;
|
||
|
|
||
|
public class Leaner extends Designer {
|
||
|
|
||
|
static {
|
||
|
// 这段代码让插件能支持远程设计的时候的调试
|
||
|
String workDir = System.getProperty("user.dir");
|
||
|
System.setProperty("fine.plugin.home", workDir + "/webroot/WEB-INF/plugins");
|
||
|
}
|
||
|
|
||
|
public Leaner(String[] strings) {
|
||
|
super(strings);
|
||
|
}
|
||
|
}
|