java
gx1230123
这个作者很懒,什么都没留下…
展开
-
jar文件打开时提示 could not create the java virtual machine
could not create the java virtual machine转载 2022-06-08 16:28:47 · 2026 阅读 · 0 评论 -
post请求接收同名参数(路径和请求体同名参数)
@RequestParam接收该参数会将两个同名参数拼在一起,用,分隔原创 2020-09-24 14:50:13 · 660 阅读 · 0 评论 -
springboot @value无法注入 配置文件
使用@Value的类如果被其他类作为对象引用,必须要使用注入的方式,而不能new转自 https://bbs.csdn.net/topics/392082865转载 2018-04-16 12:19:13 · 1526 阅读 · 0 评论 -
mybatis 注入方式
无意中发现mybatis3.4.5中注入还能这么用:java代码params.put("sql", "SELECT * FROM e_eventinfo where stateid=#{stateid} and casetype = #{casetype}");params.put("accountid", "555");params.put("casetype", "1");par原创 2018-05-29 17:01:20 · 1743 阅读 · 0 评论 -
生成webservice客户端的一些坑
一、undefinedelement declaration 's:schema'(来自:https://blog.csdn.net/binbinxyz/article/details/8906717)用<s:any minOccurs="2" maxOccurs="2"/>替代<s:element ref="s:schema"/><s:any /> ..转载 2018-09-13 10:39:26 · 7491 阅读 · 0 评论 -
mybatis查询比plsql慢
使用PLSQL查询的时间是mybatis的四分之一,一直不太明白是什么原因,经过百度,设置fetchSize解决了此问题,设置之后,两者时间基本相等,估计和我查询的数据比较多有关系,特此记下。<select id="xxx" resultType="xxx" fetchSize="1000"> SQL......</select>...原创 2019-08-05 15:52:22 · 4431 阅读 · 1 评论 -
PLSQL可以程序报错ORA-12505,TNS:listener does not currently know of SID
//监听sid服务,表示sid为orcldatabase.url=jdbc:oracle:thin:@171.xxx.96.xx:xxxx:orcl//监听服务名,表示服务名为orcldatabase.url=jdbc:oracle:thin:@171.xxx.96.xx:xxxx/orcl使用服务名连接时注意使用第二种方式(与PL/SQL相同)查询sid_name的方法sel...转载 2019-09-20 15:42:16 · 919 阅读 · 0 评论