手机总出现recvfrom failed: ECONNRESET (Connection reset by peer) 怎么解决?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了手机总出现recvfrom failed: ECONNRESET (Connection reset by peer) 怎么解决?相关的知识,希望对你有一定的参考价值。
参考技术A Java代码### The error occurred while setting parameters
### SQL: insert into SYS_SECURITY_RIGHT_SYSTEM( SYSRIGHT_ID, SYS_ORDER, SYS_NAME, SYS_MEMO ) values ( ?, ?, ?, ? )
### Cause: java.sql.SQLException: ORA-01400: 无法将 NULL 插入 ("SMARTCITY"."SYS_SECURITY_RIGHT_SYSTEM"."SYSRIGHT_ID")
]
在使用Mybatis主键自增长时,其要求使用Integer,使用〈selectKey〉时需要数据库中存在一条数据,不然回报上述错误。
Java代码
2013-06-19 09:27:56,109 [http-bio-8080-exec-1] DEBUG [org.mybatis.spring.SqlSessionUtils] - Registering transaction synchronization for SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1681460]
2013-06-19 09:27:56,119 [http-bio-8080-exec-1] DEBUG [org.mybatis.spring.transaction.SpringManagedTransaction] - JDBC Connection [org.apache.commons.dbcp.PoolableConnection@a1e9b0] will be managed by Spring
2013-06-19 09:27:56,119 [http-bio-8080-exec-1] DEBUG [dci.smartcity.operationsmanagement.dao.IOrgDAO.update] - ooo Using Connection [org.apache.commons.dbcp.PoolableConnection@a1e9b0]
2013-06-19 09:27:56,129 [http-bio-8080-exec-1] DEBUG [dci.smartcity.operationsmanagement.dao.IOrgDAO.update] - ==> Preparing: update SYS_SECURITY_ORG SET ORG_NAME= ?, ORG_PID=?, ORG_ORDER=?, ORG_MEMO=?, ORG_CREATETIME=?, ORG_CREATEUSER=? where ORG_ID = ?
2013-06-19 09:27:56,129 [http-bio-8080-exec-1] DEBUG [dci.smartcity.operationsmanagement.dao.IOrgDAO.update] - ==> Parameters: xx (String), 1(Integer), 2(Integer), dfd (String), 20121111(Integer), ??????? (String), 3(Integer)
2013-06-19 09:27:56,156 [http-bio-8080-exec-1] DEBUG [org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator] - Unable to translate SQLException with Error code '12899', will now try the fallback translator
2013-06-19 09:27:56,159 [http-bio-8080-exec-1] DEBUG [org.springframework.jdbc.support.SQLStateSQLExceptionTranslator] - Extracted SQL state class '72' from value '72000'
2013-06-19 09:27:56,161 [http-bio-8080-exec-1] DEBUG [org.mybatis.spring.SqlSessionUtils] - Releasing transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@1681460]追问
怎么弄,看不懂 😂
怎么弄,看不懂 😂
Embedded Coffeescript (ECO) 模板中的注释
【中文标题】Embedded Coffeescript (ECO) 模板中的注释【英文标题】:Comments in Embedded Coffeescript (ECO) templates 【发布时间】:2014-03-31 17:12:33 【问题描述】:有没有办法将 cmets(单行和多行)放在 ECO templates 中,这样它们就不会出现在渲染输出中?
例如,Django 模板允许您在 single line 上执行此操作:
# greeting #hello
或multiple lines:
<p>Rendered text with pub_date|date:"c" </p>
% comment %
<p>Commented out text with create_date|date:"c" </p>
% endcomment %
【问题讨论】:
【参考方案1】:<% %>
中的所有内容实际上都是咖啡脚本(ECO = Embedded CoffeeScript)。 CoffeeScript 中的注释使用#
字符来注释单行(而###
用于多行cmets)。见coffeescript - How to comment? "/* this */" doesn't work
所以在 ECO 中你会这样评论:
<% #This is a single line comment %>
如果您检查ECO templates 的源代码,您可以看到处理scanner.js 中的注释情况的正则表达式。
Scanner.modePatterns =
data: /(.*?)(<%%|<%\s*(\#)|<%(([=-])?)|\n|$)/,
code: /(.*?)((((:|(->|=>))\s*))?%>|\n|$)/,
comment: /(.*?)(%>|\n|$)/
;
【讨论】:
【参考方案2】:评论有一个特殊的标签,即<%# %>
例子:
<%# This is a single line comment %>
【讨论】:
以上是关于手机总出现recvfrom failed: ECONNRESET (Connection reset by peer) 怎么解决?的主要内容,如果未能解决你的问题,请参考以下文章