This commit is contained in:
kamhung
2015-12-09 10:29:45 +08:00
parent 40b02e4d95
commit 129169cb87
178 changed files with 27404 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package org.redkale.net.http;
import java.lang.annotation.*;
/**
*
* @author zhangjx
*/
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface WebServlet {
String name() default "";
boolean fillurl() default true;
String[] value() default {};
int moduleid() default 0;
WebInitParam[] initParams() default {};
}