摘要:
strust2基于配置文件:app_en_US.properties login.username = usernameapp_zh_CN.properties (这个文件必须是utf-8格式,用txt打开是/uz80/09ks) login.username = 用户名struts2.xml 中配... 阅读全文
摘要:
当前用户的Git配置文件放在用户主目录(c:/docments and settings/andministrator)下的一个隐藏文件.gitconfig中//git lg 设计log样式git config --global alias.lg "log --color --graph --pr... 阅读全文
摘要:
4.7 服务器上的 Git - GitosisGitosis把所有用户的公钥保存在authorized_keys文件的做法,只能凑和一阵子,当用户数量达到几百人的规模时,管理起来就会十分痛苦。每次改删用户都必须登录服务器不去说,这种做法还缺少必要的权限管理 — 每个人都对所有项目拥有完整的读写权限。... 阅读全文
摘要:
假如你现在新创建了一个项目,想把它提交到github上面?假设你创建好了一个项目,并切换到项目的根目录下面:$gitstatus//查看当前项目下所有文的状态,如果第一次,你会发现都红颜色的,因为它还没有交给git/github管理。$gitadd.//(.)点表示当前目录下的所有内容,交给git管... 阅读全文
摘要:
import java.util.ArrayList;import java.util.List;/** * 箱子最多装5个苹果。一个人往里放,一个人往外拿。苹果无限。 * @author Administrator */public class test01 { public static voi... 阅读全文
摘要:
阅读全文
摘要:
packagecom.Thread;/*** 动态代理* 实现共同的接口* 代理类持有真实类的引用*/publicclassstaticProxy {publicstaticvoidmain(String[] args) {//创建真实角色You you =newYou();//创建代理 + 真实角... 阅读全文
摘要:
packagecom.Thread;publicclassState {publicstaticvoidmain(String[] args) {Study s =newStudy();Thread t =newThread(s);t.start();//外部干涉-->停止线程体for(inti =... 阅读全文
摘要:
packagecom.Thread;publicclassJion_yield {publicstaticvoidmain(String[] args)throwsException {Test tes =newTest();Thread t =newThread(tes);t.start();fo... 阅读全文
摘要:
packagecom.Thread;classW12306implementsRunnable{privatebooleanflag=true;privateintnum=10;@Overridepublicvoidrun() {while(flag) {test6();}}//线程不安全,锁定不正... 阅读全文