mirror of
https://github.com/mapstruct/mapstruct.git
synced 2025-07-12 00:00:08 +08:00
Polish links in docs (#3214)
This commit is contained in:
parent
162fdb44f4
commit
3c81d36810
@ -298,7 +298,7 @@ public @interface Mapper {
|
||||
* Can be configured by the {@link MapperConfig#disableSubMappingMethodsGeneration()} as well.
|
||||
* <p>
|
||||
* Note: If you need to use {@code disableSubMappingMethodsGeneration} please contact the MapStruct team at
|
||||
* <a href="http://mapstruct.org">mapstruct.org</a> or
|
||||
* <a href="https://mapstruct.org">mapstruct.org</a> or
|
||||
* <a href="https://github.com/mapstruct/mapstruct">github.com/mapstruct/mapstruct</a> to share what problem you
|
||||
* are facing with the automatic sub-mapping generation.
|
||||
*
|
||||
|
@ -269,7 +269,7 @@ public @interface MapperConfig {
|
||||
* Can be overridden by {@link Mapper#disableSubMappingMethodsGeneration()}
|
||||
* <p>
|
||||
* Note: If you need to use {@code disableSubMappingMethodsGeneration} please contact the MapStruct team at
|
||||
* <a href="http://mapstruct.org">mapstruct.org</a> or
|
||||
* <a href="https://mapstruct.org">mapstruct.org</a> or
|
||||
* <a href="https://github.com/mapstruct/mapstruct">github.com/mapstruct/mapstruct</a> to share what problem you
|
||||
* are facing with the automatic sub-mapping generation.
|
||||
*
|
||||
|
@ -13,6 +13,6 @@
|
||||
* This package contains several annotations which allow to configure how mapper interfaces are generated.
|
||||
* </p>
|
||||
*
|
||||
* @see <a href="http://mapstruct.org/">MapStruct reference documentation</a>
|
||||
* @see <a href="https://mapstruct.org/">MapStruct reference documentation</a>
|
||||
*/
|
||||
package org.mapstruct;
|
||||
|
@ -100,7 +100,7 @@
|
||||
<doctitle>MapStruct ${project.version}</doctitle>
|
||||
<windowtitle>MapStruct ${project.version}</windowtitle>
|
||||
<bottom>
|
||||
<![CDATA[Copyright © ${project.inceptionYear}-{currentYear} <a href="http://mapstruct.org/">MapStruct Authors</a>; All rights reserved. Released under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache Software License 2.0</a>.]]>
|
||||
<![CDATA[Copyright © ${project.inceptionYear}-{currentYear} <a href="https://mapstruct.org/">MapStruct Authors</a>; All rights reserved. Released under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache Software License 2.0</a>.]]>
|
||||
</bottom>
|
||||
|
||||
<groups>
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
<name>MapStruct Parent</name>
|
||||
<description>An annotation processor for generating type-safe bean mappers</description>
|
||||
<url>http://mapstruct.org/</url>
|
||||
<url>https://mapstruct.org/</url>
|
||||
<inceptionYear>2012</inceptionYear>
|
||||
|
||||
<properties>
|
||||
|
14
readme.md
14
readme.md
@ -1,7 +1,7 @@
|
||||
# MapStruct - Java bean mappings, the easy way!
|
||||
|
||||
[](http://search.maven.org/#search%7Cga%7C1%7Cg%3Aorg.mapstruct%20AND%20v%3A1.*.Final)
|
||||
[](http://search.maven.org/#search%7Cga%7C1%7Cg%3Aorg.mapstruct)
|
||||
[](https://search.maven.org/search?q=g:org.mapstruct%20AND%20v:1.*.Final)
|
||||
[](https://search.maven.org/search?q=g:org.mapstruct)
|
||||
[](https://github.com/mapstruct/mapstruct/blob/master/LICENSE.txt)
|
||||
|
||||
[](https://github.com/mapstruct/mapstruct/actions?query=branch%3Amaster+workflow%3ACI)
|
||||
@ -22,7 +22,7 @@
|
||||
|
||||
## What is MapStruct?
|
||||
|
||||
MapStruct is a Java [annotation processor](http://docs.oracle.com/javase/6/docs/technotes/guides/apt/index.html) for the generation of type-safe and performant mappers for Java bean classes. It saves you from writing mapping code by hand, which is a tedious and error-prone task. The generator comes with sensible defaults and many built-in type conversions, but it steps out of your way when it comes to configuring or implementing special behavior.
|
||||
MapStruct is a Java [annotation processor](https://docs.oracle.com/javase/6/docs/technotes/guides/apt/index.html) for the generation of type-safe and performant mappers for Java bean classes. It saves you from writing mapping code by hand, which is a tedious and error-prone task. The generator comes with sensible defaults and many built-in type conversions, but it steps out of your way when it comes to configuring or implementing special behavior.
|
||||
|
||||
Compared to mapping frameworks working at runtime, MapStruct offers the following advantages:
|
||||
|
||||
@ -126,7 +126,7 @@ If you don't work with a dependency management tool, you can obtain a distributi
|
||||
|
||||
## Documentation and getting help
|
||||
|
||||
To learn more about MapStruct, refer to the [project homepage](http://mapstruct.org). The [reference documentation](http://mapstruct.org/documentation/reference-guide/) covers all provided functionality in detail. If you need help please ask it in the [Discussions](https://github.com/mapstruct/mapstruct/discussions).
|
||||
To learn more about MapStruct, refer to the [project homepage](https://mapstruct.org). The [reference documentation](https://mapstruct.org/documentation/reference-guide/) covers all provided functionality in detail. If you need help please ask it in the [Discussions](https://github.com/mapstruct/mapstruct/discussions).
|
||||
|
||||
## Building from Source
|
||||
|
||||
@ -154,13 +154,13 @@ Make sure that you have the [m2e_apt](https://marketplace.eclipse.org/content/m2
|
||||
|
||||
## Links
|
||||
|
||||
* [Homepage](http://mapstruct.org)
|
||||
* [Homepage](https://mapstruct.org)
|
||||
* [Source code](https://github.com/mapstruct/mapstruct/)
|
||||
* [Downloads](https://sourceforge.net/projects/mapstruct/files/)
|
||||
* [Downloads](https://github.com/mapstruct/mapstruct/releases)
|
||||
* [Issue tracker](https://github.com/mapstruct/mapstruct/issues)
|
||||
* [User group](https://groups.google.com/forum/?hl=en#!forum/mapstruct-users)
|
||||
* [CI build](https://github.com/mapstruct/mapstruct/actions/)
|
||||
|
||||
## Licensing
|
||||
|
||||
MapStruct is licensed under the Apache License, Version 2.0 (the "License"); you may not use this project except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
|
||||
MapStruct is licensed under the Apache License, Version 2.0 (the "License"); you may not use this project except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0.
|
||||
|
Loading…
x
Reference in New Issue
Block a user