我使用mvn archetype:create-from-project命令,但我不知道如何自定义我的原型,例如我有下一个 prop xml 文件:
<?xml version="1.0" encoding="utf-8"?>
<portlet-app xmlns="http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd
http://java.sun.com/xml/ns/portlet/portlet-app_2_0.xsd"
version="2.0">
<portlet>
<portlet-name>MyPortletName</portlet-name>
<portlet-class>org.springframework.web.portlet.DispatcherPortlet</portlet-class>
<init-param>
<name>contextConfigLocation</name>
<value>/WEB-INF/context/portlet-context.xml</value>
</init-param>
<supports>
<mime-type>text/html</mime-type>
<portlet-mode>view</portlet-mode>
</supports>
<portlet-info>
<title>My portlet</title>
</portlet-info>
</portlet>
</portlet-app>
我想在生成archetype时将portlet名称和标题作为参数传递,xml中的某些行将更改为此,例如:
...
<portlet-name>${portletName}</portlet-name>
....
<portlet-info>
<title>${portletTitle}</title>
</portlet-info>
所以我想要一个完全定制的模板,有可能吗?