- 浏览: 9144 次
最新评论
文章列表
[置顶] The matching wildcard is strict, but no declaration can be found for element 'mv
- 博客分类:
- springmvc_Ibatis框架
报错:
[/WEB-INF/user-servlet.xml] is invalid; nested exception is org.xml.sax.SAXParseException: cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'mvc:resources'.
解决:1,下载spring-mvc-3.0.xsd,切记大小为84KB以上,如右图:
2,选中项目mlxc001,然后单击菜单栏window--proper ...
1,域名:base_domain
2,管理员name:weblogic 密码:fsl123456
3,配置管理服务器:名称:AdminServer
listen address:192.168.1.10
listen prot:7001
SSL监听端口:N/A
不启动SSL
4,创建域后,开始启动WebLogic Server
-Oracle WebLogic->User Projects->base_domain->Start ...
一,打开 http://www.chinabank.com.cn/gateway/help.html 下载网银压缩包
二,所需jar包只有一个cb_md5.jar
三,交易代码:
首页.jsp
<TABLE cellSpacing=0 cellPadding=0 width=760 align=center bgColor=#666666 border=0>
<FORM name=formbill action="chinabank/Send.jsp" method=post>
<TBODY>
...
最常用正则表达式(一)
- 博客分类:
- 正则表达式
一,元字符
\w :匹配数字 _ 字母
\s : 匹配任意的空间符 \w+\s* -4-- _ -----a
\d : 匹配整数
http://blog.163.com/hjy301@126/blog/static/277123932010517103059983/
http://cache.baiducontent.com/c?m=9d78d513d99b12eb0bfa940f1a67a1716925971238c0a36468d5e35fe2144c35407193be30531710948522685be90f1efdf1456f2a5d7bf0de9fd349d6b1913f2fff7c722757d15612a448f2945b759f7dc547eaab19e2b1f5&p=8b2a971e86 ...
待研究领域
- 博客分类:
- springmvc_Ibatis框架
getDao().queryList("queryShopByid", shopid);
getDao().queryObject("queryShopByid", shopid);
有时候用queryObject得到的数据不全,什么原因
1,将仿问数据库连接的住处放到spring.xml中
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context& ...
1,查询数据记录(查询表中某字段integral所在的数据小于传来的参数consumintegral的所有记录)
<select id="myshops4" parameterClass="int" resultMap="exchangemap"> <![CDATA[ select * from exchange_goods where integral < #consumeIntegral# order by addtime desc limit 4 ]]> ...