You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

On this tutorial we will show how easily your application can be made extensible using Struts 2 plugins mechanism.

The Interface

First thing we have to do is define an interface that our plugins will implement. This interface must be available to both your web application and the plugins, so keeping it on a separate jar is a good idea.

IMyPlugin.java
package example;

public interface IMyPlugIn {
   String saySomething();
}

The Plugin

Now lets create an Struts 2 plugin. Creating a plugin is a simple task, all you need to do is build a jar with your classes, and a file called struts-plugin.xml on its root. First, the class implementing the interface defined on the first step.

MyPlugin.java
package example.impl;

import example.IMyPlugin; 

public class MyPlugin implements IMyPlugin {
   String saySomething() {
       return "We don't need no education"; //Sorry, I couldn't help it :)
   }
}

Now, struts-plugin.xml

struts-default.xml
<?xml version="1.0" encoding="UTF-8" ?>

<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>
    <bean type="example.IMyInterface" class="example.impl.MyPlugin" name="myplugin"/>
</struts>

To install the plugin into your application, just drop the jar file under WEB-INF/lib.

The Action

Now, lets get Struts 2 inject an instance of com.opensymphony.xwork2.inject.Container into our action, which we will use to discover available plugins at runtime.

MyAction.java
package example.actions;

import example.IMyPlugin;

public class MyAction extends ActionSupport {
}
  • No labels