MyEclipse 修改项目部署路径
就Tomcat来说,MyEclipse默认是使用安装目录下的webapps目录作为部署路径,
因为不想将软体和工作区间混在一起,因此想将它的部署路径改掉。
百度得解,笔记下。
MyEclipse導出的war包..
話說之前交代碼時,發現源碼包30M,而導出的war包有60M,無比囧。
查了一下,發現是包複製了的關係。
我原來在WEB-INF/lib目錄下放了多個目錄來區分不同的jar包(如commons、hibernate、spring等)。
在MyEclipse導出時將這些目錄裏面的內容都複製了一份放在根目錄中。
原來裏面的目錄是訪問不到的囧,將那些目錄幹掉后就余29M了。。。
看來以後導出的時候需要自己修改war包裏面的目錄,或者在開發過程中就不區分目錄。
MyEclipse查看错误信息
遇到一个org.hibernate.exception.GenericJDBCException: Could not get list of tables from database. 的错误,schema超级长,看不到后面的错误信息,找来找去终于找到了Error Logs,在这里可以看到错误信息。
MyEclipse启动Tomcat报错:Permission denied: listen failed
帮网友远程的时候如此 = =,用tomcat的bin工具都可以启动,但是myeclipse却不能启动,一开就报这个错,
后来发现他是用金山网镖的,关掉就正常了 囧。。。
Eclipse/MyEclipse自动完成快捷键:Alt+/
话说装了MyEclipse后,快捷键会自动变成CTRL+SPACE,跟操作系统切换输入法的冲突,囧
在Window->Preferences,General->Keys,搜索下Content Assist,修改其默认快捷键为ALT+/
但是此时还有另一个功能用到了这个快捷键导致冲突,搜索Word Completion,删除它的快捷键即可。
MyEclipse6.5 注册机源码
网上找来的 测试可用~
-
import java.text.DecimalFormat;
-
import java.text.NumberFormat;
-
import java.text.SimpleDateFormat;
-
import java.util.Calendar;
-
-
public class Crack {
-
}
-
cal.add(1, 3);
-
cal.add(6, -1);
-
"0").toString() : "-0812310";
-
String type = "YE3MB-";
-
.append(type).append(version).append(licenseNum)
-
.append(verTime).toString();
-
.append(
-
"Decompiling this copyrighted software is a violation of both your license agreement and the Digital Millenium Copyright Act of 1998 (http://www.loc.gov/copyright/legislation/dmca.pdf). Under section 1204 of the DMCA, penalties range up to a $500,000 fine or up to five years imprisonment for a first offense. Think about it; pay for a license, avoid prosecution, and feel better about yourself.")
-
-
.append(userId).toString();
-
int suf = decode(dx);
-
return change(code);
-
}
-
-
int i = 0;
-
char ac[] = s.toCharArray();
-
int j = 0;
-
for (int k = ac.length; j < k; j++)
-
i = 31 * i + ac[j];
-
-
}
-
-
byte abyte0[] = s.getBytes();
-
char ac[] = new char[s.length()];
-
int i = 0;
-
for (int k = abyte0.length; i < k; i++) {
-
int j = abyte0[i];
-
if (j >= 48 && j <= 57)
-
j = ((j - 48) + 5) % 10 + 48;
-
else if (j >= 65 && j <= 90)
-
j = ((j - 65) + 13) % 26 + 65;
-
else if (j >= 97 && j <= 122)
-
j = ((j - 97) + 13) % 26 + 97;
-
ac[i] = (char) j;
-
}
-
-
}
-
}