- 浏览: 19877 次
- 性别:
- 来自: 大连
最新评论
-
寂寞秋江:
从根本上解决问题,这精神才是可贵的,比起用Eclipse JD ...
ant无法确定 <T>T 的类型参数 -
wandyer:
引用[list][*][list][*][*][list][* ...
ant无法确定 <T>T 的类型参数
文章列表
在eclipse下使用ant打包编译时,提示
引用无法确定 <T>T 的类型参数;对于上限为 int,java.lang.Object 的类型变量 T,不存在唯一最大实例
其中ant javac task如下
引用<javac destdir="${tempfile}" source="1.6" target="1.6" encoding="utf-8" debug="on" deprecation="on">
<classpath ref ...
一、
使用spring已封装的邮件发送实现类,配置属性,其中smtp.ym.163.com为企业邮箱的smtp地址
引用<bean id="mailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl">
<property name="host" value="smtp.ym.163.com"/>
<property name="javaMailProperties"> ...
属性lookup-method的解析过程
parseLookupOverrideSubElements(ele, bd.getMethodOverrides());
引用public void parseLookupOverrideSubElements(Element beanEle, MethodOverrides overrides) {
NodeList nl = beanEle.getChildNodes();
for (int i = 0; i < nl.getLength(); i++) {
Node node = nl.item(i);
if (isC ...
最近在看jdbc4.0规范,想看看是如何自动获取驱动的,于是看了下DriverManager
loadInitialDrivers方法中
try {
drivers = (String) java.security.AccessController.doPrivileged(
new sun.security.action.GetPropertyAction("jdbc.drivers"));
} catch (Exception ex) {
drivers = null;
}
http://s ...
selectKey的使用
<insert id="registerMember" parameterType="map">
<selectKey order="BEFORE" keyProperty="userLoginId" resultType="long">
select SEQ_USER_LOGIN_ID.nextval from dual
</selectKey>
INSERT INTO ...
1、指定要打印文件的文件
log4j的日志中,可以配置一个全局的打印日志文件。
log4j.rootLogger = 【日志级别】,【appender1】,【appender2】...
这个是所有日志打印文件的根目录。
同时,也可以设置一个具体的打印文件路径。
如:log4j.logger.【A.B.C】 = 【日志级别】,【appender1】,【appender2】...
其中的【A.B.C】可以是包名,也可以是类名
当指定了多个要打印的日志文件配置时,如果这些文件配置存在交集,log4j默认是认为交集的文件是同时生效的。
比如:
log4j.rootLogger = debug,cons ...