摘要: ORA-01704: 文字字符串过长! . insert into table values(a,3,'一个长文章'); ORA-01704: 文字字符串过长! declare v_clob clob :='一个长文章'; begin insert into table values(a,3,v_c 阅读全文
posted @ 2018-04-18 10:21 少年在漂泊 阅读(462) 评论(0) 推荐(0) 编辑
摘要: merge into case_person_saxx tusing (select max(id) as id, app_id from case_xzcf group by app_id) son (t.app_id = s.app_id)when matched then update set 阅读全文
posted @ 2018-04-17 18:45 少年在漂泊 阅读(956) 评论(0) 推荐(0) 编辑
摘要: 【项目】->【右键】->【build path】->【configure build path】->【libraries】这里把你的tomcat 改成(Edit)你用的版本然后 【项目】->【右键】->【Properties】->【Targeted-Runt 阅读全文
posted @ 2018-04-16 17:50 少年在漂泊 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 1、vim修改tomcat下bin/catalina.sh文件,125行添加 if [ -z "$CATALINA_PID" ]; then CATALINA_PID=$PRGDIR/CATALINA_PID fi 如果是vi catalina.sh ,无法编辑,点击按钮“i”,进入编辑模式。 2、 阅读全文
posted @ 2018-04-09 16:18 少年在漂泊 阅读(326) 评论(0) 推荐(0) 编辑
摘要: stfp 用户名@ip 阅读全文
posted @ 2018-04-03 14:36 少年在漂泊 阅读(932) 评论(0) 推荐(0) 编辑
摘要: java.util.regex.PatternSyntaxException: Unexpected internal error near index 1 \^ String filePath ="/f/f/f\\aauuf"; String tt = filePath.replaceAll("\ 阅读全文
posted @ 2018-04-03 14:35 少年在漂泊 阅读(999) 评论(0) 推荐(0) 编辑
摘要: 输入地址:localhost:端口/项目名称/user/showUser?id=1 项目名称 阅读全文
posted @ 2018-03-27 16:31 少年在漂泊 阅读(352) 评论(0) 推荐(0) 编辑
摘要: spring+springmvc +mybatis 启动报错 将resultMap改为ResultType 如果是maven项目 Error configuring application listener of class org.springframework.web.context.Conte 阅读全文
posted @ 2018-03-27 16:07 少年在漂泊 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 可能是因为配置文件jdbc.properties 和xml文件不一致导致的,比如 jdbc.properties里面写的是 但是xml文件里面写 导致了取值错误,两边一致即可。 阅读全文
posted @ 2018-03-27 11:25 少年在漂泊 阅读(846) 评论(0) 推荐(0) 编辑
摘要: <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.9</version> </dependency> 要写在<dependencies></dependenc 阅读全文
posted @ 2018-03-27 10:10 少年在漂泊 阅读(182) 评论(0) 推荐(0) 编辑