`

Ant 映射器

    博客分类:
  • Ant
 
阅读更多

映射器常用于<uptodate>、<move>、<copy>和<apply>等任务,实现了文件重命名算法。

 

Identity映射器

    目标文件和源文件名称一致。

    它是<copy>和<move>任务的默认映射器,所以下面两种Copy的声明是等价的:

    

<?xml version="1.0" encoding="UTF-8"?>
<project name="junit" default="clean">

	<property name="from.dir" location="src"/>
	<property name="to.dir" location="mapper"/>

	<target name="copy" depends="clean">
	<!--	两种Copy是等价的	-->
	<!--
		<copy todir="${to.dir}">
			<fileset dir="${from.dir}" includes="**/*.java"/>
			<identitymapper/>
		</copy>
	-->
		<copy todir="mapper">
			<fileset dir="src" includes="**/*.java"/>
		</copy>
	
	</target>

	<target name="clean">
		<mkdir dir="${to.dir}"/>
		<delete includeemptydirs="true">
			<fileset dir="${to.dir}">
				<include name="**/*"/>
			</fileset>
		</delete>
	</target>

</project>

 

Flatter映射器

    目标文件和源文件名称一致,但是路径信息只保留到顶级目录(扁平化)。

    如果源文件集中有多个文件的名字相同,它们中只有一个会被映射到目标目录中,而且无法预期会是哪个。

<?xml version="1.0" encoding="UTF-8"?>
<project name="junit" default="clean">

	<property name="from.dir" location="src"/>
	<property name="to.dir" location="mapper"/>

	<target name="copy" depends="clean">
		<copy todir="${to.dir}">
			<fileset dir="${from.dir}" includes="**/*.java"/>
			<flattenmapper/>
		</copy>
	</target>

	<target name="clean">
		<mkdir dir="${to.dir}"/>
		<delete includeemptydirs="true">
			<fileset dir="${to.dir}">
				<include name="**/*"/>
			</fileset>
		</delete>
	</target>

</project>

 

Glob映射器

    from模式中使用的一个星号(*)指代部分由to模式中的内容替代,只对匹配from模式的文件进行操作

    下例中将所有Java文件的扩展名替换为.java.bak

<?xml version="1.0" encoding="UTF-8"?>
<project name="junit" default="clean">

	<property name="from.dir" location="src"/>
	<property name="to.dir" location="mapper"/>

	<target name="copy" depends="clean">
		<copy todir="${to.dir}">
			<fileset dir="${from.dir}" includes="**/*.java"/>
			<globmapper from="*.java" to="*.java.bak"/>
		</copy>
	</target>

	<target name="clean">
		<mkdir dir="${to.dir}"/>
		<delete includeemptydirs="true">
			<fileset dir="${to.dir}">
				<include name="**/*"/>
			</fileset>
		</delete>
	</target>

</project>

 

Regexp映射器

    from和to模式都被定义为正则表达式,而只对匹配from模式的文件进行操作

    用\0可以实现源文件名的完全匹配,从\1到\9则匹配from模式中用括号括起来的部分。

    下例复制src中的Java文件,并将Java文件的名称加前缀2和后缀3,并修改文件扩展名。

<?xml version="1.0" encoding="UTF-8"?>
<project name="junit" default="clean">

	<property name="from.dir" location="src"/>
	<property name="to.dir" location="mapper"/>

	<target name="copy" depends="clean">
		<copy todir="${to.dir}">
			<fileset dir="${from.dir}" includes="**/*.java"/>
			<regexpmapper from="^(.*)\\(.*)\.java$" to="\1\\2\23.java.bak"/>
		</copy>
	</target>

	<target name="clean">
		<mkdir dir="${to.dir}"/>
		<delete includeemptydirs="true">
			<fileset dir="${to.dir}">
				<include name="**/*"/>
			</fileset>
		</delete>
	</target>

</project>

 

Package映射器

    glob映射器的子集,不同之处在于它将分隔符用点位符(.)替换,这样可以将一个分层结构的包目录文件映射为扁平目录结构,而其包结构保存在文件名中。

    还有一个与package映射器相反的映射器unpackagemapper

    

<?xml version="1.0" encoding="UTF-8"?>
<project name="junit" default="clean">

	<property name="from.dir" location="src"/>
	<property name="to.dir" location="mapper"/>

	<target name="copy" depends="clean">
		<copy todir="${to.dir}">
			<fileset dir="${from.dir}" includes="**/*.java"/>
			<packagemapper from="*.java" to="*.java"/>
		</copy>
	</target>

	<target name="unpackage" depends="copy">
		<copy todir="${to.dir}/unpackage">
			<fileset dir="${to.dir}" includes="**/*.java"/>
			<unpackagemapper from="*.java" to="*.java"/>
		</copy>
	</target>

	<target name="clean">
		<mkdir dir="${to.dir}"/>
		<delete includeemptydirs="true">
			<fileset dir="${to.dir}">
				<include name="**/*"/>
			</fileset>
		</delete>
	</target>

</project>

 

Merge映射器

    所有的源文件被映射到一个由to属性指定的文件中。

    

<?xml version="1.0" encoding="UTF-8"?>
<project name="ant" default="clean">

	<property name="from.dir" location="src"/>
	<property name="to.dir" location="mapper"/>

	<target name="uptodate">
		<uptodate property="zip.notRequired">
			<srcfiles dir="${from.dir}" includes="**/*.java"/>
			<mergemapper to="${to.dir}/all.zip"/>
		</uptodate>
		<echo message="zip:${zip.notRequired}"/>
	</target>

	<target name="zip" depends="uptodate" unless="zip.notRequired">
		<zip destFile="${to.dir}/all.zip">
			<zipfileset dir="${from.dir}">
				<include name="**/*.java"/>
			</zipfileset>
		</zip>
	</target>

	<target name="clean">
		<mkdir dir="${to.dir}"/>
		<delete includeemptydirs="true">
			<fileset dir="${to.dir}">
				<include name="**/*"/>
			</fileset>
		</delete>
	</target>

</project>

 输出:

<!-- 第一次运行 -->
E:\workspace\Diary>ant -f build_mapper.xml zip
Buildfile: E:\workspace\Diary\build_mapper.xml

clean:

uptodate:
     [echo] zip:${zip.notRequired}

zip:
      [zip] Building zip: E:\workspace\Diary\mapper\all.zip

BUILD SUCCESSFUL
Total time: 0 seconds

<!-- 第二次运行 -->
E:\workspace\Diary>ant -f build_mapper.xml zip
Buildfile: E:\workspace\Diary\build_mapper.xml

uptodate:
     [echo] zip:true

zip:

BUILD SUCCESSFUL
Total time: 0 seconds

<!-- 添加新类后运行 -->
E:\workspace\Diary>ant -f build_mapper.xml zip
Buildfile: E:\workspace\Diary\build_mapper.xml

uptodate:
     [echo] zip:${zip.notRequired}

zip:
      [zip] Building zip: E:\workspace\Diary\mapper\all.zip

BUILD SUCCESSFUL
Total time: 0 seconds

<!-- 无修改再次运行 -->
E:\workspace\Diary>ant -f build_mapper.xml zip
Buildfile: E:\workspace\Diary\build_mapper.xml

uptodate:
     [echo] zip:true

zip:

BUILD SUCCESSFUL
Total time: 0 seconds

<!-- 修改某个类后运行 -->
E:\workspace\Diary>ant -f build_mapper.xml zip
Buildfile: E:\workspace\Diary\build_mapper.xml

uptodate:
     [echo] zip:${zip.notRequired}

zip:
      [zip] Building zip: E:\workspace\Diary\mapper\all.zip

BUILD SUCCESSFUL
Total time: 0 seconds

 

Composite映射器

    并行应用所有的内嵌映射器。

<?xml version="1.0" encoding="UTF-8"?>
<project name="ant" default="clean">

	<property name="from.dir" location="src"/>
	<property name="to.dir" location="mapper"/>

	<target name="copy" depends="clean">
		<copy todir="${to.dir}">
			<fileset dir="${from.dir}" includes="**/*.java"/>
			<compositemapper>
				<!-- 从上到下处理,上面处理过的文件,下面将不再处理 -->
				<packagemapper from="*Service.java" to="*Service.java"/>
				<identitymapper/>
			</compositemapper>
		</copy>
	</target>

	<target name="clean">
		<mkdir dir="${to.dir}"/>
		<delete includeemptydirs="true">
			<fileset dir="${to.dir}">
				<include name="**/*"/>
			</fileset>
		</delete>
	</target>

</project>

 

Chained映射器

    串行应用所有的内嵌映射器。

    

<?xml version="1.0" encoding="UTF-8"?>
<project name="ant" default="clean">

	<property name="from.dir" location="src"/>
	<property name="to.dir" location="mapper"/>

	<target name="copy" depends="clean">
		<copy todir="${to.dir}">
			<fileset dir="${from.dir}" includes="**/*.java"/>
			<chainedmapper>
				<!-- 从上到下处理,下面的映射器只会处理上面处理过的文件 -->
				<packagemapper from="*Service.java" to="*Service.java"/>
				<unpackagemapper from="*Service.java" to="*Service.java"/>
				<flattenmapper/>
			</chainedmapper>
		</copy>
	</target>

	<target name="clean">
		<mkdir dir="${to.dir}"/>
		<delete includeemptydirs="true">
			<fileset dir="${to.dir}">
				<include name="**/*"/>
			</fileset>
		</delete>
	</target>

</project>

 

Filter映射器

    对每个文件名应用一系列“管道”命令。

 

 

Script映射器

    通过脚本语言的运行代码创建一个输出的文件名。

 

 

Mapping File Names

Some tasks take source files and create target files. Depending on the task, it may be quite obvious which name a target file will have (using javac, you know there will be .class files for your .java files) - in other cases you may want to specify the target files, either to help Apache Ant or to get an extra bit of functionality.

While source files are usually specified as filesets, you don't specify target files directly - instead, you tell Ant how to find the target file(s) for one source file. An instance of org.apache.tools.ant.util.FileNameMapper is responsible for this. It constructs target file names based on rules that can be parameterized with from and to attributes - the exact meaning of which is implementation-dependent.

These instances are defined in <mapper> elements with the following attributes:

Attribute Description Required
type specifies one of the built-in implementations. Exactly one of these
classname specifies the implementation by class name.
classpath the classpath to use when looking up classname. No
classpathref the classpath to use, given as reference to a path defined elsewhere. No
from the from attribute for the given implementation. Depends on implementation.
to the to attribute for the given implementation. Depends on implementation.

Note that Ant will not automatically convert / or \ characters in the to and from attributes to the correct directory separator of your current platform. If you need to specify this separator, use ${file.separator} instead. For the regexpmapper, ${file.separator}will not work, as on windows it is the '\' character, and this is an escape character for regular expressions, one should use thehandledirsep attribute instead.

Parameters specified as nested elements

The classpath can be specified via a nested <classpath>, as well - that is, a path-like structure.

Since Ant 1.7.0, nested File Mappers can be supplied via either <mapper> elements or <typedef>'d implementations oforg.apache.tools.ant.util.FileNameMapper. If nested File Mappers are specified by either means, the mapper will be implicitly configured as a composite mapper.


The built-in mapper types are:

All built-in mappers are case-sensitive.

As of Ant 1.7.0, each of the built-in mapper implementation types is directly accessible using a specific tagname. This makes it possible for filename mappers to support attributes in addition to the generally available to and from.
The <mapper type|classname="..."> usage form remains valid for reasons of backward compatibility.

identity

The target file name is identical to the source file name. Both to and from will be ignored.

Examples:

<mapper type="identity"/>
<identitymapper/>
Source file name Target file name
A.java A.java
foo/bar/B.java foo/bar/B.java
C.properties C.properties
Classes/dir/dir2/A.properties Classes/dir/dir2/A.properties

flatten

The target file name is identical to the source file name, with all leading directory information stripped off. Both to and from will be ignored.

Examples:

<mapper type="flatten"/>
<flattenmapper/>
Source file name Target file name
A.java A.java
foo/bar/B.java B.java
C.properties C.properties
Classes/dir/dir2/A.properties A.properties

merge

The target file name will always be the same, as defined by to - from will be ignored.

Examples:
<mapper type="merge" to="archive.tar"/>
<mergemapper to="archive.tar"/>
Source file name Target file name
A.java archive.tar
foo/bar/B.java archive.tar
C.properties archive.tar
Classes/dir/dir2/A.properties archive.tar

glob

Both to and from are required and define patterns that may contain at most one *. For each source file that matches the frompattern, a target file name will be constructed from the to pattern by substituting the * in the to pattern with the text that matches the *in the from pattern. Source file names that don't match the from pattern will be ignored.

Examples:

<mapper type="glob" from="*.java" to="*.java.bak"/>
<globmapper from="*.java" to="*.java.bak"/>
Source file name Target file name
A.java A.java.bak
foo/bar/B.java foo/bar/B.java.bak
C.properties ignored
Classes/dir/dir2/A.properties ignored
<mapper type="glob" from="C*ies" to="Q*y"/>
<globmapper from="C*ies" to="Q*y"/>
Source file name Target file name
A.java ignored
foo/bar/B.java ignored
C.properties Q.property
Classes/dir/dir2/A.properties Qlasses/dir/dir2/A.property

The globmapper mapper can take the following extra attributes.

Attribute Description Required
casesensitive If this is false, the mapper will ignore case when matching the glob pattern. This attribute can be true or false, the default is true. Since Ant 1.6.3. No
handledirsep If this is specified, the mapper will ignore the difference between the normal directory separator characters - \ and /. This attribute can be true or false, the default is false. This attribute is useful for cross-platform build files. Since Ant 1.6.3. No

An example:

      <pathconvert property="x" targetos="unix">
        <path path="Aj.Java"/>
        <mapper>
        <chainedmapper>
          <flattenmapper/>
          <globmapper from="a*.java" to="*.java.bak" casesensitive="no"/>
        </chainedmapper>
        </mapper>
      </pathconvert>
      <echo>x is ${x}</echo>
    

will output "x is j.java.bak".

and

      <pathconvert property="x" targetos="unix">
        <path path="d/e/f/j.java"/>
        <mapper>
          <globmapper from="${basedir}\d/e\*" to="*" handledirsep="yes"/>
        </mapper>
      </pathconvert>
      <echo>x is ${x}</echo>
    

will output "x is f/j.java".

regexp

Both to and from are required and define regular expressions. If the source file name (as a whole or in part) matches the frompattern, the target file name will be constructed from the to pattern, using \0 to \9 as back-references for the full match (\0) or the matches of the subexpressions in parentheses. The to pattern determines the whole file name, so if you wanted to replace the extension of a file you should not use from="\.old$" to=".new" but rather from="(.*)\.old$" to="\1.new" (or rather use a glob mapper in this case).

Source files not matching the from pattern will be ignored.

Note that you need to escape a dollar-sign ($) with another dollar-sign in Ant.

The regexp mapper needs a supporting library and an implementation of org.apache.tools.ant.util.regexp.RegexpMatcher that hides the specifics of the library. Since Ant 1.8.0 Ant requires Java 1.4 to run, so the implementation based on the java.util.regexpackage will always be available. You can still use the now retired Jakarta ORO or Jakarta Regex instead if your provide the corresponding jar in your CLASSPATH.

For information about using gnu.regexp or gnu.rex with Ant, see this article.

If you want to use one of the regular expression libraries other than java.util.regex you need to also use the corresponding ant-[apache-oro, apache-regexp].jar from the Ant release you are using. Make sure, both will be loaded from the same classpath, that is either put them into your CLASSPATHANT_HOME/lib directory or a nested <classpath> element of the mapper - you cannot haveant-[apache-oro, apache-regexp].jar in ANT_HOME/lib and the library in a nested <classpath>.

Ant will choose the regular-expression library based on the following algorithm:

  • If the system property ant.regexp.matcherimpl has been set, it is taken as the name of the class implementingorg.apache.tools.ant.util.regexp.RegexpMatcher that should be used.
  • If it has not been set, uses the JDK 1.4 classes.

Examples:

<mapper type="regexp" from="^(.*)\.java$$" to="\1.java.bak"/>
<regexpmapper from="^(.*)\.java$$" to="\1.java.bak"/>
Source file name Target file name
A.java A.java.bak
foo/bar/B.java foo/bar/B.java.bak
C.properties ignored
Classes/dir/dir2/A.properties ignored
<mapper type="regexp" from="^(.*)/([^/]+)/([^/]*)$$" to="\1/\2/\2-\3"/>
<regexpmapper from="^(.*)/([^/]+)/([^/]*)$$" to="\1/\2/\2-\3"/>
Source file name Target file name
A.java ignored
foo/bar/B.java foo/bar/bar-B.java
C.properties ignored
Classes/dir/dir2/A.properties Classes/dir/dir2/dir2-A.properties
<mapper type="regexp" from="^(.*)\.(.*)$$" to="\2.\1"/>
<regexpmapper from="^(.*)\.(.*)$$" to="\2.\1"/>
Source file name Target file name
A.java java.A
foo/bar/B.java java.foo/bar/B
C.properties properties.C
Classes/dir/dir2/A.properties properties.Classes/dir/dir2/A
<mapper type="regexp" from="^(.*?)(\$$[^/\\\.]*)?\.class$$" to="\1.java"/>
<regexpmapper from="^(.*?)(\$$[^/\\\.]*)?\.class$$" to="\1.java"/>
Source file name Target file name
ClassLoader.class ClassLoader.java
java/lang/ClassLoader.class java/lang/ClassLoader.java
java\lang\ClassLoader$1.class java\lang\ClassLoader.java
java/lang/ClassLoader$foo$1.class java/lang/ClassLoader.java

The regexpmapper mapper can take the following extra attributes.

Attribute Description Required
casesensitive If this is false, the mapper will ignore case when matching the pattern. This attribute can be true or false, the default is true. Since Ant 1.6.3. No
handledirsep If this is specified, the mapper will treat a \ character in a filename as a / for the purposes of matching. This attribute can be true or false, the default is false. This attribute is useful for cross-platform build files.Since Ant 1.6.3. No

An example:

      <pathconvert property="x" targetos="unix">
        <path path="Aj.Java"/>
        <chainedmapper>
          <flattenmapper/>
          <regexpmapper from="a(.*)\.java" to="\1.java.bak" casesensitive="no"/>
        </chainedmapper>
      </pathconvert>
      <echo>x is ${x}</echo>
    

will output "x is j.java.bak".

and

    <pathconvert property="hd.prop" targetos="windows">
      <path path="d\e/f\j.java"/>
      <chainedmapper>
        <regexpmapper from="${basedir}/d/e/(.*)" to="\1" handledirsep="yes"/>
      </chainedmapper>
    </pathconvert>
    

will set hd.prop to "f\j.java".

package

Sharing the same syntax as the glob mapper, the package mapper replaces directory separators found in the matched source pattern with dots in the target pattern placeholder. This mapper is particularly useful in combination with <uptodate> and <junit>output.

The to and from attributes are both required.

Example:

<mapper type="package" from="*Test.java" to="TEST-*Test.xml"/>
<packagemapper from="*Test.java" to="TEST-*Test.xml"/>
Source file name Target file name
org/apache/tools/ant/util/PackageMapperTest.java TEST-org.apache.tools.ant.util.PackageMapperTest.xml
org/apache/tools/ant/util/Helper.java ignored

unpackage (since Ant 1.6.0)

This mapper is the inverse of the package mapper. It replaces the dots in a package name with directory separators. This is useful for matching XML formatter results against their JUnit test test cases. The mapper shares the sample syntax as the glob mapper.

The to and from attributes are both required.

Example:

<mapper type="unpackage" from="TEST-*Test.xml" to="${test.src.dir}/*Test.java">
<unpackagemapper from="TEST-*Test.xml" to="${test.src.dir}/*Test.java">
Source file name Target file name
TEST-org.acme.AcmeTest.xml ${test.src.dir}/org/acme/AcmeTest.java

composite (since Ant 1.7.0)

This mapper implementation can contain multiple nested mappers. File mapping is performed by passing the source filename to each nested <mapper> in turn, returning all results. The to and from attributes are ignored.

Starting with Ant 1.8.0 the order of the mapped results is the same as the order of the nested mappers; prior to Ant 1.8.0 the order has been undefined.

Examples:

<compositemapper>
  <identitymapper/>
  <packagemapper from="*.java" to="*"/>
</compositemapper>
Source file name Target file names
foo/bar/A.java foo/bar/A.java
foo.bar.A

The composite mapper has no corresponding <mapper type> attribute.

chained (since Ant 1.7.0)

This mapper implementation can contain multiple nested mappers. File mapping is performed by passing the source filename to the first nested mapper, its results to the second, and so on. The target filenames generated by the last nested mapper comprise the ultimate results of the mapping operation. The to and from attributes are ignored.

Examples:

<chainedmapper>
  <flattenmapper/>
  <globmapper from="*" to="new/path/*"/>
  <mapper>
    <globmapper from="*" to="*1"/>
    <globmapper from="*" to="*2"/>
  </mapper>
</chainedmapper>
Source file name Target file names
foo/bar/A.java new/path/A.java1
new/path/A.java2
boo/far/B.java new/path/B.java1
new/path/B.java2

The chained mapper has no corresponding <mapper type> attribute.

filtermapper (since Ant 1.6.3)

This mapper implementation applies a filterchain to the source file name.

Examples:

<filtermapper>
  <replacestring from="\" to="/"/>
</filtermapper>
Source file name Target file names
foo\bar\A.java foo/bar/A.java
<filtermapper>
  <scriptfilter language="beanshell">
    self.setToken(self.getToken().toUpperCase());
  </scriptfilter>
</filtermapper>
Source file name Target file names
foo\bar\A.java FOO\BAR\A.JAVA

The filtermapper has no corresponding <mapper type> attribute.

scriptmapper (since Ant 1.7)

This mapper executes a script written in Apache BSF or JSR 223 supported language, once per file to map.

The script can be declared inline or in a specified file.

 

See the Script task for an explanation of scripts and dependencies.

Attribute Description Required
language Scripting language Yes
manager The script engine manager to use. See the script task for using this attribute. No - default is "auto"
src File containing the script No
setbeans whether to have all properties, references and targets as global variables in the script. since Ant 1.8.0 No, default is "true".
classpath The classpath to pass into the script. No
classpathref The classpath to use, given as a reference to a path defined elsewhere. No

This filename mapper can take a nested <classpath> element. See the script task on how to use this element.

Example:

<scriptmapper language="javascript">
  self.addMappedName(source.toUpperCase());
  self.addMappedName(source.toLowerCase());
</scriptmapper>
Source file name Target file names
foo\bar\A.java FOO\BAR\A.JAVA
foo\bar\a.java

To use this mapper, the scripts need access to the source file, and the ability to return multiple mappings. Here are the relevant beans and their methods. The script is called once for every source file, with the list of mapped names reset after every invocation.

Script bean Description
source: String The file/path to map
self the scriptmapper itself
self.addMappedName(String name) Add a new mapping
self.clear() Reset the list of files.

 

The scriptmapper has no corresponding <mapper type> attribute.

firstmatchmapper (since Ant 1.8.0)

This mapper supports an arbitrary number of nested mappers and returns the results of the first mapper that matches. This is different from composite mapper which collects the results of all matching children.

Examples:

<firstmatchmapper>
  <globmapper from="*.txt" to="*.bak"/>
  <globmapper from="*A.*" to="*B.*"/>
</firstmatchmapper>
Source file name Target file names
foo/bar/A.txt foo/bar/A.bak
foo/bar/A.java foo/bar/B.java

The firstmatchmapper has no corresponding <mapper type> attribute.

cutdirsmapper (since Ant 1.8.2)

This mapper strips a configured number of leading directories from the source file name.

Examples:

<cutdirsmapper dirs="1"/>
Source file name Target file names
foo/bar/A.txt bar/A.txt

The cutdirsmapper has no corresponding <mapper type> attribute.

Attribute Description Required
dirs Number of directories to strip (must be a positive number). Yes

 

 

分享到:
评论

相关推荐

    ant1.7使用手册指南

    7. **Ant的类加载器**:理解Ant如何加载类,特别是自定义任务和插件,以及如何配置类加载器以处理特定的依赖。 8. **宏定义(Macrodef)**:掌握如何创建可重用的宏定义,以简化构建脚本,提高代码复用性。 9. **...

    ant混淆打包

    1. **引入必要的库**:在`build.xml`中,需要引入ProGuard,这是一个强大的Java字节码混淆器、优化器和缩小器。通过添加`&lt;taskdef&gt;`标签,将ProGuard的任务定义到Ant中,例如: ```xml ...

    17_ant_完整的用户管理小项目_搭建了spring_mvc的框架

    7. **控制器**:Controller是处理HTTP请求的入口点,它使用@RequestMapping注解来映射URL,并通过@RequestBody和@ResponseBody处理请求和响应数据。 8. **数据库集成**:Spring MVC可以与各种持久层框架如Hibernate...

    Apache Ant操作手册

    XML文件中的每个构建任务都映射到一个Java类,这些类实现了特定的任务逻辑。 3. **任务(task)和目标(target)**: 一个Ant构建文件包含一个或多个目标,每个目标由一系列任务组成。任务是Ant的基本执行单元,可以执行...

    Struts2官方例子1(Ant版的)

    在Basic_Struts2_Ant中,Struts.xml可能包含了简单的Action配置,比如一个HelloWorld Action,以及相应的结果页面映射。开发者可以通过这个文件控制Action的执行逻辑和视图的展示。 4. **Action与Result**:Action...

    MyBatis整合开发代码如何自动生成(Ant)

    在MyBatis中,我们可以利用MyBatis的代码生成器(MyBatis Generator,简称MBG)来自动生成Java模型类、Mapper接口及XML配置文件。MBG可以根据数据库表的信息自动创建这些文件,大大简化了开发流程。 1. **安装和...

    ANT1.6+index文档全文件

    5. **文件集(Filesets)和文件映射(Filemappers)**:这些是Ant处理文件和目录的方式,可以用来指定一组文件,或者将文件名从一种格式转换为另一种格式。 6. **宏定义(Macrodef)**:宏定义允许用户创建可重用的...

    utils4ant:Ant 的实用程序任务和类型

    该项目(将)为 Ant 托管以下实用程序(任务、类型、映射器、过滤器等) Java API AntLauncher:如何从 Java 启动 ant 任务 FastCopy : 文件复制,比ant的原版快 Timer : 测量嵌套任务所用的时间 GC : 允许在 ...

    ssh2整合 ant 1108

    例如,Struts2的动作拦截器(Interceptor)可以用于实现登录验证、权限控制等功能;Spring的AOP可以用来实现日志记录、性能监控等切面;Hibernate的 Criteria查询或HQL语言可以灵活地操作数据库。同时,Ant的构建...

    ant+struts2+hibernate

    【标题】"ant+struts2+hibernate"是一个集成开发环境,它结合了三个在Java Web开发中广泛使用的框架:Apache Ant、Struts 2和Hibernate。这个项目可能是为了展示或教学如何将这三个工具整合在一起,创建一个功能完善...

    ANT再学习及实践

    1. **Spring**:这是一个全面的后端开发框架,提供了依赖注入、面向切面编程、事务管理等功能,还支持MVC(模型-视图-控制器)架构模式,简化了Java Web应用的开发。 2. **Struts**:是早期的MVC框架,主要负责处理...

    一个使用ANT自动生成SSH简单功能的tool工具软件

    在SSH框架下,这种工具可以自动生成控制器、模型、视图以及DAO层的代码,使得开发者可以更快地专注于业务逻辑的实现,而不是基础架构的搭建。此外,这些工具通常会遵循最佳实践,有助于保持代码的一致性和可维护性。...

    Ant1.7+middlegen-2.1+配置手顺

    `Ant`是一款基于Java的构建工具,它允许开发者通过XML来定义项目构建过程,而`Middlegen`则是一个数据库模式到Hibernate对象关系映射(ORM)的代码生成器,可以自动生成Hbm(Hibernate Mapping)文件以及对应的Java...

    Spring + Hibernate 例子(使用petclinic, 利用ant)

    Spring是一个全面的Java企业级应用开发框架,它提供了依赖注入、AOP(面向切面编程)、MVC(模型-视图-控制器)等核心功能,而Hibernate则是一个流行的ORM(对象关系映射)工具,用于简化数据库操作。在这个例子中,...

    hibernate+spring+junit+ant+mysql

    标题中的“hibernate+spring+junit+ant+mysql”是一个经典的Java开发组合,它涵盖了五个重要的技术领域:Hibernate作为对象关系映射框架,Spring作为全面的轻量级框架,JUnit用于单元测试,Ant作为构建工具,以及...

    ssh2 spring hibernate struts2 log4j ant

    - Hibernate:这是一个对象关系映射(ORM)框架,它允许开发者用Java对象来操作数据库,减少了SQL的直接编写,提高了开发效率和可维护性。 - Struts2:这是基于MVC设计模式的Web应用框架,用来组织和控制应用的...

    ssh2,JPA规范基础框架+ant打包

    SSH2中的Struts2负责视图和控制器部分,提供了一种强大的MVC实现。它允许开发者通过Action类定义业务逻辑,并通过Result来决定如何展示结果。Spring则作为整个应用的容器,负责组件的生命周期管理和依赖注入,可以将...

    记录-笔记-用ANT构建-struts-spring-hibernate

    Struts是MVC(模型-视图-控制器)框架,Spring是全面的企业级应用框架,而Hibernate是一个对象关系映射(ORM)框架,它们共同构成了Java后端开发的强大基础。 在Ant中,构建过程通常包括编译源代码、处理资源文件、...

    开发J2EE程序需要的JAR包包括(ant,hibernate,structs,spring)

    3. **Struts**:Struts是最早的Java Web MVC(模型-视图-控制器)框架之一,它为构建基于JSP和Servlet的Web应用提供了结构和指导。Struts通过分离业务逻辑、控制逻辑和表示层,使开发更加模块化和可维护。它还提供了...

Global site tag (gtag.js) - Google Analytics