上一页 1 ··· 5 6 7 8 9 10 11 12 下一页
  2015年4月4日
摘要: ------解决方案-------------------------------------------------------- 把 /tomcatX/webapps/applicationname/WEB-INF/lib下面RAR和/tomcat6/lib重复的删除.一切OK 阅读全文
posted @ 2015-04-04 03:20 _noname 阅读(189) 评论(0) 推荐(0) 编辑
  2015年4月2日
摘要: 开始--运行--输入gpedit.msc打开组策略 1.计算机配置--管理模板--windows components--Internet explorer--右侧有"禁用更改连接设置",改为未配置 2.用户配置--管理模板--windows components--Internet exp... 阅读全文
posted @ 2015-04-02 01:42 _noname 阅读(2940) 评论(0) 推荐(0) 编辑
  2015年3月27日
摘要: cmd 命令行下输入: net start mysql 启动MySQL服务器。 再打开SQLyog,连接数据库即可。 阅读全文
posted @ 2015-03-27 20:42 _noname 阅读(998) 评论(0) 推荐(0) 编辑
  2015年1月23日
摘要: dataSource { pooled = true driverClassName = "com.mysql.jdbc.Driver" username = "root" password = "mysql" //logSql=true}hibernate { cache.use... 阅读全文
posted @ 2015-01-23 15:26 _noname 阅读(152) 评论(0) 推荐(0) 编辑
  2015年1月21日
摘要: 在创建完Grails应用后通常会使用“脚手架”来生成整个应用程序的骨架。这是通过使用generate-*命令来完成的,例如使用generate-all命令来根据领域模型生成控制器及其相应视图。由于之前我们创建了一个Book.groovy的领域模型,因此在这里运行如下命令。 No domai... 阅读全文
posted @ 2015-01-21 13:29 _noname 阅读(177) 评论(0) 推荐(0) 编辑
  2014年12月30日
摘要:  很多伙伴在更新VS2010,或者卸载VS2012安装2010后,建立Win32 Console Project/MFC项目时会出现"LINK : fatal error LNK1123: 转换到 COFF 期间失败: 文件无效或损坏"的错误。 错误描述: 1>正在编译资源... 1>... 阅读全文
posted @ 2014-12-30 15:13 _noname 阅读(176) 评论(0) 推荐(0) 编辑
  2014年12月29日
摘要: 如果一个问题可以找到一个能在多项式的时间里解决它的算法,那么这个问题就属于P问题。NP问题是指可以在多项式的时间里验证一个解的问题。NP问题的另一个定义是,可以在多项式的时间里猜出一个解的问题.NP-Hard问题:所有的NP问题都能规约到它,但它不一定是NP问题。 NP完全问题,也就是多项式复杂... 阅读全文
posted @ 2014-12-29 21:54 _noname 阅读(574) 评论(0) 推荐(0) 编辑
  2014年12月25日
摘要: 使用opencv2,使用vs2012,遇到如下错误。 1>------ 已启动生成: 项目: 20130925, 配置: Debug Win32 ------ 1> stdafx.cpp 1>d:\code\20130925\20130925\stdafx.cpp(18): error C4... 阅读全文
posted @ 2014-12-25 19:38 _noname 阅读(119) 评论(0) 推荐(0) 编辑
  2014年12月6日
摘要: //enum枚举类型#includevoid enumTest();void main(){ enumTest();//枚举类型举例 printf("\n排列问题,5球取三球,不重色\n"); enum color{red,yellow,blue,white,black}; int i,j,k,... 阅读全文
posted @ 2014-12-06 23:39 _noname 阅读(154) 评论(0) 推荐(0) 编辑
摘要: //链表的操作#include#include#define NULL 0 #define LEN sizeof(struct student)struct student{ long num; float score; struct student *next;};//结点int n;//存... 阅读全文
posted @ 2014-12-06 23:37 _noname 阅读(136) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 下一页