- 浏览: 324386 次
- 性别:
- 来自: 北京
最新评论
-
Mr丶Chenn:
...
doFilter如何使用 -
Mr丶Chenn:
[url][url][url][url][/url][/url ...
doFilter如何使用 -
Mr丶Chenn:
...
doFilter如何使用 -
Mr丶Chenn:
引用引用引用引用引用
doFilter如何使用 -
honlin:
SafeUtil.getDateFormat().trim() ...
DateUtil
文章列表
在 myeclipse中 部署工程到weblogic没有反应
检查 bea下
C:\bea\user_projects\domains\X\config X 为你的bea发布所在目录
在 config.XML 中 检查应用,如果未添加进来
则手动添加
<app-deployment> <name>hrInterface</name> <target>AdminServer</target> <module-type>war</mo ...
开始--》运行--》cmd 输入 chkdsk X:/F X :受损盘符的标识
如果出现提示一律选 Y 然后回车, 经过几个 100%后,结束扫描回复,手动重启电脑。
在jsp中引用 <script type="text/javascript" src="include/jquery.js"></script>(在附件中有,可下载)
把jsp或html界面写在 table中,并添加 id
<table width="100%" class="layoutTb" border="0" cellspacing="0" cellpadding="0" align="cent ...
Document document = null;
document = DocumentHelper.parseText(response); Element root = document.getRootElement();
Element node = root.element("server"); String result = node.elementText("Result");
node .element("user").setText("123&qu ...
xml 文件 放在 web-inf下的 classes目录下
private static String webInfoPath = "config.xml";
/** * 保存XML文档 * * @param doc * @throws IOException */ public static void saveDocument(Document doc) throws IOException { OutputFormat format = OutputFormat.createPrettyPrint(); ...
public class DES { private static final String PASSWORD_CRYPT_KEY = "khkhkhkhkh"; private final static String DES = "DES";
/** * 加密 * * @param src * 数据源 * @param key * 密钥,长度必须是8的倍数 * @r ...
<bean id="propertyConfigurerForAnalysis" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location">
<value>classpath:/spring/include/dbQuery.properties</value>
</property>
& ...
1: insert 标签中 传入参入 大写字母必须从第三个字母开始
如:oPeratorDate 则插入报错
2:查询语句
select count(*) from hresb_empmessageinfo where 1=1
返回值 resultClass 必须为 java.lang.Integer 返回String会报错的。
3: $strToint$ 美元符号,可以把变量外面的引号去掉,即可以把字符串转化成整形。
4:#name:VARCHAR#,#age:int#,#startDate:DATE#.#endDate:Date#,#name:CHAR#
## ...
1: 在 配置文件中单独配置 数据库
db-dialect.properties
内容如下:
dialect=oracle
2:写几套ibatis文件:如,oracle,sql,mysql等
3:在sql-map-config.xml中配置如下
<sqlMapConfig>
<properties resource="db-dialect.properties" />
<sqlMapresource="com/dao/sqlMap
${dialect}/Test.xml"/ ...