摘要:
archetypeCatalog=internal 阅读全文
摘要:
GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'%' IDENTIFIED BY 'mypassword' WITH GRANT OPTION; myuser:代表你要使用的用户 mypassword:代表你的密码 阅读全文
摘要:
<insert id="insert" parameterType="com.pojo.TSubject" useGeneratedKeys="true" keyProperty="subjectid" > insert into t_subject ( parentid, subjectname, 阅读全文
摘要:
pom.xml src->main->resources下新建文件 generatorConfig.xml 然后到 maven project ->mybatis-generator ->mybatis-generator:generate 右键->run maven build 如果没有提示错误就 阅读全文
摘要:
ImageView loginBtn = (ImageView)findViewById(R.id.login_button); loginBtn.setOnClickListener(new View.OnClickListener() { @Override public void onClic 阅读全文
摘要:
需要注意: 必须设置ImageView 的属性。 android:adjustViewBounds="true" 阅读全文
摘要:
note:debugging requires the debug connect session system privilege 解决方案: 原因是用户权限不够,使用以下命令授予权限: GRANT debug any procedure, debug connect session TO use 阅读全文
摘要:
今天想使用jdk8+tomcat7来个写程序,但是一运行始终提示连接不到数据库 提示:Could not obtain connection metadata org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create Poolable 阅读全文
摘要:
1、首先在github网站上新建一个repository 打开https://github.com/ 找到new repository按钮 输入repository name 选择public 记录下项目地址:git@github.com:lvlvoutlook/test001.git 2、打开id 阅读全文