<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <title>deploying a springMvcPortlet with service-Builder</title>
  <link rel="self" href="https://liferay.dev/c/message_boards/find_thread?p_l_id=119785294&amp;threadId=119768378" />
  <subtitle>deploying a springMvcPortlet with service-Builder</subtitle>
  <id>https://liferay.dev/c/message_boards/find_thread?p_l_id=119785294&amp;threadId=119768378</id>
  <updated>2026-04-04T22:33:14Z</updated>
  <dc:date>2026-04-04T22:33:14Z</dc:date>
  <entry>
    <title>RE: deploying a springMvcPortlet with service-Builder</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=119767123" />
    <author>
      <name>ahmed joti</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=119767123</id>
    <updated>2020-08-16T18:25:31Z</updated>
    <published>2020-08-16T18:25:31Z</published>
    <summary type="html">thank&amp;#39;s for your reply , i will try that !</summary>
    <dc:creator>ahmed joti</dc:creator>
    <dc:date>2020-08-16T18:25:31Z</dc:date>
  </entry>
  <entry>
    <title>RE: deploying a springMvcPortlet with service-Builder</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=119766774" />
    <author>
      <name>David H Nebinger</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=119766774</id>
    <updated>2020-08-16T14:16:15Z</updated>
    <published>2020-08-16T14:16:15Z</published>
    <summary type="html">&lt;a href="https://liferay.dev/blogs/-/blogs/service-builder-6-2-migration"&gt;https://liferay.dev/blogs/-/blogs/service-builder-6-2-migration&lt;/a&gt; covers your options.</summary>
    <dc:creator>David H Nebinger</dc:creator>
    <dc:date>2020-08-16T14:16:15Z</dc:date>
  </entry>
  <entry>
    <title>deploying a springMvcPortlet with service-Builder</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=119768377" />
    <author>
      <name>ahmed joti</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=119768377</id>
    <updated>2020-08-15T17:53:33Z</updated>
    <published>2020-08-15T17:53:33Z</published>
    <summary type="html">Hi everyone,&lt;br /&gt;&lt;br /&gt;im using a liferay 7.1,i already create a springMvcPortlet and i want to use a service-builder to generate the entity model?it is possible ?&lt;br /&gt;and for the service.xml of the service-builder i have to create two entities ,so i do this(a customer can have several contracts :&lt;br /&gt;&lt;br /&gt;&amp;lt;?xml version=&amp;#34;1.0&amp;#34;?&amp;gt;&lt;br /&gt;&amp;lt;!DOCTYPE service-builder PUBLIC &amp;#34;-//Liferay//DTD Service Builder 7.1.0//EN&amp;#34; &amp;#34;http://www.liferay.com/dtd/liferay-service-builder_7_1_0.dtd&amp;#34;&amp;gt;&amp;lt;service-builder  package-path=&amp;#34;com.integration.formation&amp;#34;&amp;gt;&lt;br /&gt;    &amp;lt;author&amp;gt;Bryan&amp;lt;/author&amp;gt;&lt;br /&gt;    &amp;lt;namespace&amp;gt;GB&amp;lt;/namespace&amp;gt;&lt;br /&gt;    &amp;lt;!-- customer entity --&amp;gt;&lt;br /&gt;    &amp;lt;entity name=&amp;#34;customer &amp;#34; local-service=&amp;#34;true&amp;#34; uuid=&amp;#34;true&amp;#34; remote-service=&amp;#34;true&amp;#34;&amp;gt;&lt;br /&gt;        &amp;lt;!-- customer fields --&amp;gt;&lt;br /&gt;        &amp;lt;column name=&amp;#34;id&amp;#34; primary=&amp;#34;true&amp;#34; type=&amp;#34;long&amp;#34; /&amp;gt;&lt;br /&gt;        &amp;lt;column name=&amp;#34;name&amp;#34; type=&amp;#34;String&amp;#34; /&amp;gt;&lt;br /&gt;        &amp;lt;column name=&amp;#34;customer Id&amp;#34; type=&amp;#34;Collection&amp;#34; entity=&amp;#34;contract&amp;#34; mapping-key=&amp;#34;customer ID&amp;#34; /&amp;gt;        &amp;lt;!-- Group instance --&amp;gt;        &amp;lt;column name=&amp;#34;customerGroupId&amp;#34; type=&amp;#34;long&amp;#34; /&amp;gt;&lt;br /&gt;        &amp;lt;column name=&amp;#34;customerCompanyId&amp;#34; type=&amp;#34;long&amp;#34; /&amp;gt;&lt;br /&gt;        &amp;lt;!-- finder --&amp;gt;        &amp;lt;finder name=&amp;#34;CustomerGroupId&amp;#34; return-type=&amp;#34;Collection&amp;#34;&amp;gt;&lt;br /&gt;            &amp;lt;finder-column name=&amp;#34;customerGroupId&amp;#34; /&amp;gt;&lt;br /&gt;        &amp;lt;/finder&amp;gt;    &amp;lt;/entity&amp;gt;    &amp;lt;!-- contrat entity --&amp;gt;&lt;br /&gt;    &amp;lt;entity name=&amp;#34;contract&amp;#34; local-service=&amp;#34;true&amp;#34; uuid=&amp;#34;true&amp;#34; remote-service=&amp;#34;true&amp;#34;&amp;gt;&lt;br /&gt;        &amp;lt;!-- client fields --&amp;gt;&lt;br /&gt;        &amp;lt;column name=&amp;#34;id&amp;#34; primary=&amp;#34;true&amp;#34; type=&amp;#34;long&amp;#34; /&amp;gt;&lt;br /&gt;        &amp;lt;column name=&amp;#34;numContract&amp;#34; type=&amp;#34;String&amp;#34; /&amp;gt;&lt;br /&gt;            &amp;lt;column name=&amp;#34;customertId&amp;#34; type=&amp;#34;long&amp;#34; /&amp;gt;              &amp;lt;!-- Group instance --&amp;gt;        &amp;lt;column name=&amp;#34;contractGroupId&amp;#34; type=&amp;#34;long&amp;#34; /&amp;gt;&lt;br /&gt;        &amp;lt;column name=&amp;#34;contractCompanyId&amp;#34; type=&amp;#34;long&amp;#34; /&amp;gt;&lt;br /&gt;        &amp;lt;!-- finder --&amp;gt;        &amp;lt;finder name=&amp;#34;ContractGroupId&amp;#34; return-type=&amp;#34;Collection&amp;#34;&amp;gt;&lt;br /&gt;            &amp;lt;finder-column name=&amp;#34;contractGroupId&amp;#34; /&amp;gt;&lt;br /&gt;        &amp;lt;/finder&amp;gt;&lt;br /&gt;    &amp;lt;/entity&amp;gt;&lt;br /&gt;&amp;lt;/service-builder&amp;gt;&lt;br /&gt;&lt;br /&gt;Do you have an idea about this problem?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Thanks in advance</summary>
    <dc:creator>ahmed joti</dc:creator>
    <dc:date>2020-08-15T17:53:33Z</dc:date>
  </entry>
</feed>
