Social Bookmark Template

In this article, you’ll learn how to create a Liferay social bookmark as a Liferay module. To create a social bookmark as a module via the command line using Blade CLI or Maven, use one of the commands with the following parameters:

blade create -t social-bookmark [-p packageName] [-c className] projectName

or

mvn archetype:generate \
    -DarchetypeGroupId=com.liferay \
    -DarchetypeArtifactId=com.liferay.project.templates.social.bookmark \
    -DartifactId=[projectName] \
    -Dpackage=[packageName] \
    -DclassName=[className] \
    -DliferayVersion=7.2

You can also insert the -b maven parameter in the Blade command to generate a Maven project using Blade CLI.

The template for this kind of project is social-bookmark. Suppose you want to create a social bookmark project called my-social-bookmark-project with a package name of com.liferay.docs.socialbookmark and a class name of TestSocialBookmark. You could run the following command to accomplish this:

blade create -t social-bookmark -p com.liferay.docs.socialbookmark -c Test my-social-bookmark-project

or

mvn archetype:generate \
    -DarchetypeGroupId=com.liferay \
    -DarchetypeArtifactId=com.liferay.project.templates.social.bookmark \
    -DgroupId=com.liferay \
    -DartifactId=my-social-bookmark-project \
    -Dpackage=com.liferay.docs.socialbookmark \
    -Dversion=1.0 \
    -DclassName=Test \
    -Dauthor=Joe Bloggs \
    -DliferayVersion=7.2

After running the Blade command above, your project’s directory structure looks like this:

  • my-social-bookmark-project
    • gradle
      • wrapper
        • gradle-wrapper.jar
        • gradle-wrapper.properties
    • src
      • main
        • java
          • com/liferay/docs/socialbookmark
            • social/bookmark
              • TestSocialBookmark
        • resources
          • content
            • Language.properties
          • META-INF
            • resources
              • icons.svg
              • init.jsp
              • page.jsp
    • bnd.bnd
    • build.gradle
    • gradlew

The Maven-generated project includes a pom.xml file and does not include the Gradle-specific files, but otherwise, appears exactly the same.

The generated module is a working application and is deployable to a Liferay DXP instance. An unmodified module generated as described above creates a social bookmark named Test that searches the current URL using Google Search.

Figure 1: Click the magnifying glass icon to search the current URL using Google Search.

Figure 1: Click the magnifying glass icon to search the current URL using Google Search.

To build upon the generated app, modify the project by adding logic and additional files to the folders outlined above. For more information on developing social bookmarks, see the Social API section of tutorials. For information on configuring social bookmarks for the Blogs widget, see the Displaying Blogs article.

« Simulation Panel Entry TemplateSpring MVC Portlet Template »
¿Fue útil este artículo?
Usuarios a los que les pareció útil: 0 de 0