From 6081e74fe65db3e1bfedb8fdf41d892718c42294 Mon Sep 17 00:00:00 2001 From: Jan Bartel Date: Fri, 29 Jul 2011 12:03:35 +1000 Subject: [PATCH] 353285 - ServletSecurity annotation ignored --- VERSION.txt | 1 + .../java/org/eclipse/jetty/annotations/AnnotationDecorator.java | 1 + 2 files changed, 2 insertions(+) diff --git a/VERSION.txt b/VERSION.txt index 0526e13c938..af138b47a21 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1,6 +1,7 @@ jetty-8.0.0.RC0-SNAPSHOT + Merge from jetty-7.4.3 + Enable annotations by default + + 353285 ServletSecurity annotation ignored jetty-8.0.0.M3 27 May 2011 + 324505 Implement API login diff --git a/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/AnnotationDecorator.java b/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/AnnotationDecorator.java index 8a5b1363acf..0b0df258ef7 100644 --- a/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/AnnotationDecorator.java +++ b/jetty-annotations/src/main/java/org/eclipse/jetty/annotations/AnnotationDecorator.java @@ -46,6 +46,7 @@ public class AnnotationDecorator implements Decorator _introspector.registerHandler(new PreDestroyAnnotationHandler(context)); _introspector.registerHandler(new DeclareRolesAnnotationHandler(context)); _introspector.registerHandler(new MultiPartConfigAnnotationHandler(context)); + _introspector.registerHandler(new ServletSecurityAnnotationHandler(context)); } /* ------------------------------------------------------------ */