|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.wicketstuff.annotation.scan.AnnotatedMountScanner
public class AnnotatedMountScanner
Looks for mount information by scanning for classes annotated with MountPath.
You can specify a package to scan (e.g., "org.mycompany.wicket.pages"). Wildcards
also work (e.g., "org.mycompany.*.pages" or "org.mycompany.**.pages").
You can also go more advanced, using any pattern supported by
MatchingResources. For example, the first package example above is turned into
"classpath*:/org/mycompany/wicket/pages/**/*.class".
For each class that is annotated, an appropriate IRequestTargetUrlCodingStrategy
implementing class is created using the information in the MountPath annotation
and any supplemental annotations. Each instance is added to the list to return. Each item
in the returned list can then be mounted.
Typical usage is in your Application.init() method and utilizes the
AnnotatedMountList.mount(org.apache.wicket.protocol.http.WebApplication) convenience method.
protected void init()
{
new AnnotatedMountScanner().scanPackage("org.mycompany.wicket.pages").mount(this);
}
You could scan the entire classpath if you wanted by passing in null, but that might require more time to run than limiting it to known packages which have annotated classes.
Page classes annotation usage is as follows:
@MountPath(path = "hello")
private class HelloPage extends Page
{
}
@MountPath(path = "dogs", alt = {"canines", "k9s"})
@MountMixedParam(parameterNames = {"dexter", "zorro"})
private class DogsPage extends Page
{
}
The first example will mount HelloPage to /hello using the default encoding strategy (as
returned by getDefaultStrategy(java.lang.String, java.lang.Class extends org.apache.wicket.Page>) which is BookmarkablePageRequestTargetUrlCodingStrategy.
The second example will mount DogsPage at "/dogs" (as the primary) and as "/canines" and "/k9s" as
alternates using the MixedParamUrlCodingStrategy. Further, the second example specifies that
{"dexter", "zorro"} String array is to be passed to the constructor. The value for the pageMapName
argument is null.
| Constructor Summary | |
|---|---|
AnnotatedMountScanner()
|
|
| Method Summary | |
|---|---|
org.apache.wicket.request.target.coding.IRequestTargetUrlCodingStrategy |
getDefaultStrategy(String mountPath,
Class<? extends org.apache.wicket.Page> pageClass)
Returns the default coding strategy given a mount path and class. |
List<Class<?>> |
getPackageMatches(String pattern)
Scan given a package name or part of a package name and return list of classes with MountPath annotation. |
String |
getPatternForPackage(String packageName)
Get the Spring search pattern given a package name or part of a package name |
List<Class<?>> |
getPatternMatches(String pattern)
Scan given a Spring search pattern and return list of classes with MountPath annotation. |
AnnotatedMountList |
scanClass(Class<? extends org.apache.wicket.Page> pageClass)
Scan given a class that is a sublass of Page. |
protected AnnotatedMountList |
scanList(List<Class<?>> mounts)
Scan a list of classes which are annotated with MountPath |
AnnotatedMountList |
scanPackage(String packageName)
Scan given package name or part of a package name |
AnnotatedMountList |
scanPattern(String pattern)
Scan given a Spring search pattern. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public AnnotatedMountScanner()
| Method Detail |
|---|
public String getPatternForPackage(String packageName)
packageName - a package name
public List<Class<?>> getPackageMatches(String pattern)
public List<Class<?>> getPatternMatches(String pattern)
public AnnotatedMountList scanPackage(String packageName)
packageName - a package to scan (e.g., "org.mycompany.pages)
AnnotatedMountListpublic AnnotatedMountList scanPattern(String pattern)
pattern -
AnnotatedMountListprotected AnnotatedMountList scanList(List<Class<?>> mounts)
mounts -
AnnotatedMountListpublic AnnotatedMountList scanClass(Class<? extends org.apache.wicket.Page> pageClass)
Page.
pageClass - Page subclass to scan
AnnotatedMountList containing the primary and alternate strategies created for the class.
public org.apache.wicket.request.target.coding.IRequestTargetUrlCodingStrategy getDefaultStrategy(String mountPath,
Class<? extends org.apache.wicket.Page> pageClass)
mountPath - pageClass -
BookmarkablePageRequestTargetUrlCodingStrategy
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||