摘要: 使用第三方框架平台开发,其仓库为私服,在私服仓库不可用时但jar又是已经存在的情况下,maven很多引用库一直显示红色红波浪。 最后通过将repository下所有包下的_remote.repositories文件删除,问题解决了。 即,使用本地的jar,不需要检查远程仓库上的包。 阅读全文
posted @ 2024-08-08 22:45 fengyxcode 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 原因:本地启动运行时,没找到classes目录下的xml文件。 解决办法1: 将xml放到resource目录下。 阅读全文
posted @ 2024-08-07 11:53 fengyxcode 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 【异常】 [2021-09-02 08:44:41.114] [ERROR] [web-container] [Exception starting filter [Tongweb WebSocket (JSR356) Filter]]java.lang.ClassCastException: or 阅读全文
posted @ 2021-09-03 00:04 fengyxcode 阅读(681) 评论(0) 推荐(0) 编辑
摘要: 当访问到代码 redisTemplate.opsForValue(); 时,出现以下错误: org.springframework.data.redis.RedisConnectionFailureException: Unable to connect to Redis; nested excep 阅读全文
posted @ 2021-08-26 23:45 fengyxcode 阅读(8623) 评论(0) 推荐(1) 编辑
摘要: 阅读全文
posted @ 2009-01-16 04:18 fengyxcode 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2009-01-15 04:49 fengyxcode 阅读(148) 评论(0) 推荐(0) 编辑
摘要: IIS and ASP.NET: The Application PoolBy Thiru Thangarathinam Go to page: 1 2 Next In this part, we will take a look at one of the new features in IIS 6.0, named Application Pool, and demonstrate ... 阅读全文
posted @ 2007-06-22 14:24 fengyxcode 阅读(1148) 评论(0) 推荐(0) 编辑
摘要: Server.MapPath(path) The MapPath method maps the specified relative or virtual path to the corresponding physical directory on the server.Parameters (MSDN:ms-help://MS.MSDNQTR.2003FEB.2052/iisre... 阅读全文
posted @ 2007-02-15 10:05 fengyxcode 阅读(231) 评论(0) 推荐(0) 编辑
摘要: IF EXISTS(Select * From sysobjects where ID=Object_ID(N'tablename') AND xType='U') print 'exists' else print 'not exists'SQL Server: 阅读全文
posted @ 2007-02-09 10:43 fengyxcode 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 报如下错误: Violation of PRIMARY KEY constraint 'PK_cs_Threads'. Cannot insert duplicate key in object 'dbo.cs_Threads'. 分析进去后,竟然发现这个表的自增字段数据库中已经达到了6144,而数据库维护的这个表的初始自增值只到6109。 解决方法很简单,利用以下SQL 语句即可搞定: DBCC... 阅读全文
posted @ 2007-02-09 10:20 fengyxcode 阅读(732) 评论(0) 推荐(0) 编辑