码迷,mamicode.com
首页 >  
搜索关键字:annotation processor    ( 3710个结果
Spring MVC 事务配置
Spring MVC事务配置要了解事务配置的所有方法,请看一下《Spring事务配置的5种方法》本文介绍两种配置方法:一、 XML,使用tx标签配置拦截器实现事务一、 Annotation方式以下所使用环境为Spring4.0.3、Hibernate4.3.5一、 XML,使用tx标签配置拦截器实现...
分类:编程语言   时间:2014-05-16 09:44:21    阅读次数:486
spring mvc拦截器和<mvc:annotation-driven />的详解
MVC的拦截器经本人在Spring mvc中对方案1和方案2的测试表明,并没有拦截静态资源,所以可以放心使用方案1和方案2,方案3可以放弃,并且可以放心使用注解。方案一,(近似)总拦截器,拦截所有url 为什么叫“近似”,前面说了,Spring没有总的拦截器。会为每一个HandlerMappi...
分类:编程语言   时间:2014-05-16 09:38:07    阅读次数:408
junit单元测试
现在最新的Junit是Junit4,Junit4最大的亮点就是引入了注解(annotation),通过解析注解就可以为测试提供相应的信息,并抛弃Junit3使用命名约束的方式。我们先从Junit3开始对于Junit3,有一下的规定和要求1.测试类必须要继承于TestCase父类,必须已Test开头或...
分类:其他好文   时间:2014-05-15 22:12:38    阅读次数:394
用pigz代替gzip -- 并行压缩软件
用pigz代替gzipBy yejr on 03 十二月 2012pig是个啥东东?官网:http://zlib.net/pigz一句话简介:A parallel implementation of gzip for modernmulti-processor, multi-core machine...
分类:其他好文   时间:2014-05-15 17:16:05    阅读次数:375
jfreechart 的一般配置显示
1 package kite.struts2.action; 2 3 4 import java.awt.Font; 5 6 import javax.annotation.Resource; 7 8 import kite.domain.Question; 9 impo...
分类:其他好文   时间:2014-05-15 15:55:26    阅读次数:398
Junit与spring TestContext框架整合
所需要的包: junit需要是4.5以上 org.springframework.test-XXX.RELEASE.jar package test; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; i...
分类:编程语言   时间:2014-05-15 04:21:45    阅读次数:357
gradle编译自定义注解(annotation)
最近把一个用eclipse构建的项目,加上了Gradle脚本,用它来编译。虽然最后编译是显示BUILD SUCCESSFUL,但是在编译过程中,却打印出一大堆栈信息,似乎是在编译我自定义的注解时出现的异常。 打印的栈信息前面部分如下: :assemble :lint Failed converting ECJ parse tree to Lombok for file E:\code\git\...
分类:其他好文   时间:2014-05-15 00:00:10    阅读次数:516
spring Quartz基于配置文件和注解的实现
这里只是做简单的记录如何实现。 一、基于配置文件的实现        ①编写需要调度的类 package com.study; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Component; //@Component public cla...
分类:编程语言   时间:2014-05-14 19:21:22    阅读次数:279
mybatis(基于annotation的方法知道就行了)
MyBatisUtil.javaUserMapper.javapackage edu.hhxy.btais.util;import java.io.IOException;import java.io.InputStream;import org.apache.ibatis.io.Resources...
分类:其他好文   时间:2014-05-14 03:15:45    阅读次数:323
复习java第五天(枚举、Annotation(注释) 概述)
一、枚举传统的方式:?在某些情况下,一个类的对象是有限而且固定的。例如季节类,只能有 4 个对象?手动实现枚举类:—private 修饰构造器。—属性使用 private final 修饰。—把该类的所有实例都使用 public static final 来修饰。练习代码: 1 public cla...
分类:编程语言   时间:2014-05-10 06:45:30    阅读次数:498
3710条   上一页 1 ... 367 368 369 370 371 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!