会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Supernatural
https://blog.csdn.net/williamfan21c
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
5
6
7
8
9
10
11
12
下一页
2015年4月4日
http status 500 The server encountered an internal error that prevented it from....
摘要: ------解决方案-------------------------------------------------------- 把 /tomcatX/webapps/applicationname/WEB-INF/lib下面RAR和/tomcat6/lib重复的删除.一切OK
阅读全文
posted @ 2015-04-04 03:20 _noname
阅读(192)
评论(0)
推荐(0)
2015年4月2日
IE浏览器--internet选项--连接中的设置是灰色
摘要: 开始--运行--输入gpedit.msc打开组策略 1.计算机配置--管理模板--windows components--Internet explorer--右侧有"禁用更改连接设置",改为未配置 2.用户配置--管理模板--windows components--Internet exp...
阅读全文
posted @ 2015-04-02 01:42 _noname
阅读(3056)
评论(0)
推荐(0)
2015年3月27日
MySQL服务无法启动(2003 - Can't connect to MySQL server on‘localhost' (10061).)
摘要: cmd 命令行下输入: net start mysql 启动MySQL服务器。 再打开SQLyog,连接数据库即可。
阅读全文
posted @ 2015-03-27 20:42 _noname
阅读(1005)
评论(0)
推荐(0)
2015年1月23日
grails datasource.groovy
摘要: dataSource { pooled = true driverClassName = "com.mysql.jdbc.Driver" username = "root" password = "mysql" //logSql=true}hibernate { cache.use...
阅读全文
posted @ 2015-01-23 15:26 _noname
阅读(156)
评论(0)
推荐(0)
2015年1月21日
grails中 grails generate-all错误解决方法
摘要: 在创建完Grails应用后通常会使用“脚手架”来生成整个应用程序的骨架。这是通过使用generate-*命令来完成的,例如使用generate-all命令来根据领域模型生成控制器及其相应视图。由于之前我们创建了一个Book.groovy的领域模型,因此在这里运行如下命令。 No domai...
阅读全文
posted @ 2015-01-21 13:29 _noname
阅读(185)
评论(0)
推荐(0)
2014年12月30日
LINK:fatal error LNK1123: 转换到 COFF 期间失败: 文件无效或损坏
摘要: 很多伙伴在更新VS2010,或者卸载VS2012安装2010后,建立Win32 Console Project/MFC项目时会出现"LINK : fatal error LNK1123: 转换到 COFF 期间失败: 文件无效或损坏"的错误。 错误描述: 1>正在编译资源... 1>...
阅读全文
posted @ 2014-12-30 15:13 _noname
阅读(190)
评论(0)
推荐(0)
2014年12月29日
什么是P问题, 什么是NP问题, 什么是NP难度问题,什么是NP完全问题
摘要: 如果一个问题可以找到一个能在多项式的时间里解决它的算法,那么这个问题就属于P问题。NP问题是指可以在多项式的时间里验证一个解的问题。NP问题的另一个定义是,可以在多项式的时间里猜出一个解的问题.NP-Hard问题:所有的NP问题都能规约到它,但它不一定是NP问题。 NP完全问题,也就是多项式复杂...
阅读全文
posted @ 2014-12-29 21:54 _noname
阅读(594)
评论(0)
推荐(0)
2014年12月25日
vs2012 error c4996: 'fopen': This function or variable may be unsafe
摘要: 使用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
阅读(124)
评论(0)
推荐(0)
2014年12月6日
c语言——枚举类型
摘要: //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
阅读(160)
评论(0)
推荐(0)
C语言——链表
摘要: //链表的操作#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
阅读(140)
评论(0)
推荐(0)
上一页
1
···
5
6
7
8
9
10
11
12
下一页