本文整理汇总了Java中javax.servlet.ServletRegistration.Dynamic类的典型用法代码示例。如果您正苦于以下问题:Java Dynamic类的具体用法?Java Dynamic怎么用?Java Dynamic使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
Dynamic类属于javax.servlet.ServletRegistration包,在下文中一共展示了Dynamic类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testOnStartup
import javax.servlet.ServletRegistration.Dynamic; //导入依赖的package包/类
@Test
public void testOnStartup() throws Exception {
Configuration configuration = (Configuration) DynamicPropertyFactory.getBackingConfigurationSource();
String urlPattern = "/rest/*";
configuration.setProperty(ServletConfig.KEY_SERVLET_URL_PATTERN, urlPattern);
ServletContext servletContext = mock(ServletContext.class);
Dynamic dynamic = mock(Dynamic.class);
when(servletContext.addServlet(RestServletInjector.SERVLET_NAME, RestServlet.class)).thenReturn(dynamic);
RestServletInitializer restServletInitializer = new RestServletInitializer();
restServletInitializer.setPort(TEST_PORT);
restServletInitializer.onStartup(servletContext);
verify(dynamic).setAsyncSupported(true);
verify(dynamic).addMapping(urlPattern);
verify(dynamic).setLoadOnStartup(0);
}
示例2: inject
import javax.servlet.ServletRegistration.Dynamic; //导入依赖的package包/类
public Dynamic inject(ServletContext servletContext, String urlPattern) {
String[] urlPatterns = splitUrlPattern(urlPattern);
if (urlPatterns.length == 0) {
LOGGER.warn("urlPattern is empty, ignore register {}.", SERVLET_NAME);
return null;
}
String listenAddress = ServletConfig.getLocalServerAddress();
if (!ServletUtils.canPublishEndpoint(listenAddress)) {
LOGGER.warn("ignore register {}.", SERVLET_NAME);
return null;
}
// dynamic deploy a servlet to handle serviceComb RESTful request
Dynamic dynamic = servletContext.addServlet(SERVLET_NAME, RestServlet.class);
dynamic.setAsyncSupported(true);
dynamic.addMapping(urlPatterns);
dynamic.setLoadOnStartup(0);
LOGGER.info("RESTful servlet url pattern: {}.", Arrays.toString(urlPatterns));
return dynamic;
}
示例3: testDefaultInjectNotListen
import javax.servlet.ServletRegistration.Dynamic; //导入依赖的package包/类
@Test
public void testDefaultInjectNotListen(@Mocked ServletContext servletContext,
@Mocked Dynamic dynamic) throws UnknownHostException, IOException {
try (ServerSocket ss = new ServerSocket(0, 0, InetAddress.getByName("127.0.0.1"))) {
int port = ss.getLocalPort();
new Expectations(ServletConfig.class) {
{
ServletConfig.getServletUrlPattern();
result = "/*";
ServletConfig.getLocalServerAddress();
result = "127.0.0.1:" + port;
}
};
}
Assert.assertEquals(null, RestServletInjector.defaultInject(servletContext));
}
示例4: testDefaultInjectListen
import javax.servlet.ServletRegistration.Dynamic; //导入依赖的package包/类
@Test
public void testDefaultInjectListen(@Mocked ServletContext servletContext,
@Mocked Dynamic dynamic) throws UnknownHostException, IOException {
try (ServerSocket ss = new ServerSocket(0, 0, InetAddress.getByName("127.0.0.1"))) {
int port = ss.getLocalPort();
new Expectations(ServletConfig.class) {
{
ServletConfig.getServletUrlPattern();
result = "/rest/*";
ServletConfig.getLocalServerAddress();
result = "127.0.0.1:" + port;
}
};
Assert.assertEquals(dynamic, RestServletInjector.defaultInject(servletContext));
}
}
示例5: onStartup
import javax.servlet.ServletRegistration.Dynamic; //导入依赖的package包/类
/**
* Configure the given {@link ServletContext} with any servlets, filters, listeners
* context-params and attributes necessary for initializing this web application. See examples
* {@linkplain WebApplicationInitializer above}.
*
* @param servletContext the {@code ServletContext} to initialize
* @throws ServletException if any call against the given {@code ServletContext} throws a {@code ServletException}
*/
public void onStartup(ServletContext servletContext) throws ServletException {
// Spring Context Bootstrapping
AnnotationConfigWebApplicationContext rootAppContext = new AnnotationConfigWebApplicationContext();
rootAppContext.register(AutoPivotConfig.class);
servletContext.addListener(new ContextLoaderListener(rootAppContext));
// Set the session cookie name. Must be done when there are several servers (AP,
// Content server, ActiveMonitor) with the same URL but running on different ports.
// Cookies ignore the port (See RFC 6265).
CookieUtil.configure(servletContext.getSessionCookieConfig(), CookieUtil.COOKIE_NAME);
// The main servlet/the central dispatcher
final DispatcherServlet servlet = new DispatcherServlet(rootAppContext);
servlet.setDispatchOptionsRequest(true);
Dynamic dispatcher = servletContext.addServlet("springDispatcherServlet", servlet);
dispatcher.addMapping("/*");
dispatcher.setLoadOnStartup(1);
// Spring Security Filter
final FilterRegistration.Dynamic springSecurity = servletContext.addFilter(SPRING_SECURITY_FILTER_CHAIN, new DelegatingFilterProxy());
springSecurity.addMappingForUrlPatterns(EnumSet.of(DispatcherType.REQUEST), true, "/*");
}
示例6: onStartup
import javax.servlet.ServletRegistration.Dynamic; //导入依赖的package包/类
@Override
public void onStartup(ServletContext servletContext)
throws ServletException {
AnnotationConfigWebApplicationContext ctx = new AnnotationConfigWebApplicationContext();
ctx.register(MyMvcConfig.class);
ctx.setServletContext(servletContext); // ②
Dynamic servlet = servletContext.addServlet("dispatcher",new DispatcherServlet(ctx)); // 3
servlet.addMapping("/");
servlet.setLoadOnStartup(1);
}
示例7: loadCustomFilter
import javax.servlet.ServletRegistration.Dynamic; //导入依赖的package包/类
/**
* 动态的加载过滤器, 不需要再webxml中配置, 只需要在yml文件中配置全路径即可, 配置多个过滤器时可以形成过滤器链
* @param context ServletContext servlet上下文
* @param filters 过滤器的全路径, 可以配置多个
*/
private void loadCustomFilter(ServletContext context, List<String> filters) {
filters.forEach(filter -> {
String urlPattern = "/*";
if (filter.indexOf("@") > 0) {
String[] split = filter.split("@");
urlPattern = split[1];
filter = split[0];
}
javax.servlet.FilterRegistration.Dynamic dynamic =
context.addFilter(filter, filter);
dynamic.setAsyncSupported(true); // 设置过滤器的异步支持
dynamic.addMappingForUrlPatterns(
EnumSet.of(DispatcherType.REQUEST), true, urlPattern);
});
}
示例8: initGitServlet
import javax.servlet.ServletRegistration.Dynamic; //导入依赖的package包/类
private void initGitServlet(Path gitWorkspace, ServletContext servletContext) throws IOException {
if (!Files.exists(gitWorkspace)) {
Files.createDirectories(gitWorkspace);
}
// add git servlet mapping
Dynamic gitServlet = servletContext.addServlet("git-servlet", new GitServlet());
gitServlet.addMapping("/git/*");
gitServlet.setInitParameter("base-path", gitWorkspace.toString());
gitServlet.setInitParameter("export-all", "true");
gitServlet.setAsyncSupported(true);
gitServlet.setLoadOnStartup(1);
}
示例9: onStartup
import javax.servlet.ServletRegistration.Dynamic; //导入依赖的package包/类
@Override
public void onStartup(ServletContext servletContext) throws ServletException {
Assert.notNull(this.servlet, "Servlet must not be null");
String name = getServletName();
if (!isEnabled()) {
logger.info("Servlet " + name + " was not registered (disabled)");
return;
}
logger.info("Mapping servlet: '" + name + "' to " + this.urlMappings);
Dynamic added = servletContext.addServlet(name, this.servlet);
if (added == null) {
logger.info("Servlet " + name + " was not registered "
+ "(possibly already registered?)");
return;
}
configure(added);
}
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:18,代码来源:ServletRegistrationBean.java
示例10: configure
import javax.servlet.ServletRegistration.Dynamic; //导入依赖的package包/类
/**
* Configure registration settings. Subclasses can override this method to perform
* additional configuration if required.
* @param registration the registration
*/
protected void configure(ServletRegistration.Dynamic registration) {
super.configure(registration);
String[] urlMapping = this.urlMappings
.toArray(new String[this.urlMappings.size()]);
if (urlMapping.length == 0 && this.alwaysMapUrl) {
urlMapping = DEFAULT_MAPPINGS;
}
if (!ObjectUtils.isEmpty(urlMapping)) {
registration.addMapping(urlMapping);
}
registration.setLoadOnStartup(this.loadOnStartup);
if (this.multipartConfig != null) {
registration.setMultipartConfig(this.multipartConfig);
}
}
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:21,代码来源:ServletRegistrationBean.java
示例11: initialize
import javax.servlet.ServletRegistration.Dynamic; //导入依赖的package包/类
public static void initialize(ServletContext servletContext, boolean dev) throws ServletException {
FacesInitializer facesInitializer = new FacesInitializer();
servletContext.setInitParameter("primefaces.FONT_AWESOME", "true");
servletContext.setInitParameter("javax.faces.FACELETS_SKIP_COMMENTS", "true");
if (dev) {
servletContext.setInitParameter("javax.faces.FACELETS_REFRESH_PERIOD", "0");
servletContext.setInitParameter("javax.faces.PROJECT_STAGE", "Development");
} else {
servletContext.setInitParameter("javax.faces.FACELETS_REFRESH_PERIOD", "-1");
servletContext.setInitParameter("javax.faces.PROJECT_STAGE", "Production");
}
servletContext.setSessionTrackingModes(ImmutableSet.of(SessionTrackingMode.COOKIE));
Set<Class<?>> clazz = new HashSet<Class<?>>();
clazz.add(WebXmlSpringBoot.class);
facesInitializer.onStartup(clazz, servletContext);
Dynamic startBrowserServlet = servletContext.addServlet("StartBrowserServlet", StartBrowserServlet.class);
startBrowserServlet.setLoadOnStartup(2);
}
示例12: onStartup
import javax.servlet.ServletRegistration.Dynamic; //导入依赖的package包/类
@Override
public void onStartup(ServletContext servletContext) throws ServletException {
AnnotationConfigWebApplicationContext applicationContext = buildApplicationContext();
Dynamic appServlet = servletContext.addServlet("appServlet", new DispatcherServlet(applicationContext));
appServlet.setLoadOnStartup(1);
appServlet.addMapping("/api/*", "/app/*");
MessageDispatcherServlet messageDispatcherServlet = new MessageDispatcherServlet(applicationContext);
messageDispatcherServlet.setTransformWsdlLocations(true);
Dynamic wsServlet = servletContext.addServlet("wsServlet", messageDispatcherServlet);
wsServlet.setLoadOnStartup(2);
wsServlet.addMapping("/ws/*");
FilterRegistration.Dynamic filter = servletContext.addFilter("openEntityManagerInViewFilter", buildOpenEntityManagerFilter());
filter.addMappingForUrlPatterns(getDispatcherTypes(), false, "/api/*", "/app/*","/ws/*");
servletContext.addListener(new ContextLoaderListener(applicationContext));
}
示例13: onStartup
import javax.servlet.ServletRegistration.Dynamic; //导入依赖的package包/类
@Override
public void onStartup(ServletContext servletContext) throws ServletException
{
AnnotationConfigWebApplicationContext ctx = new AnnotationConfigWebApplicationContext();
ctx.register(WebAppConfig.class);
servletContext.addListener(new ContextLoaderListener(ctx));
// http://stackoverflow.com/questions/7903556/programming-spring-mvc-controller-and-jsp-for-httpdelete
// https://cwiki.apache.org/confluence/display/GMOxDOC30/cviewer-javaee6+-+Programmatically+register+servlets+and+filters
// https://gist.github.com/krams915/4238821
servletContext
.addFilter("hiddenHttpMethodFilter", "org.springframework.web.filter.HiddenHttpMethodFilter")
.addMappingForUrlPatterns(null, false, "/*");
// This DispatcherServlet is a front controller that forwards the incoming HTTP requests to the specific controler classes
Dynamic servlet = servletContext.addServlet("dispatcher", new DispatcherServlet(ctx));
servlet.addMapping("/");
servlet.setLoadOnStartup(1);
}
示例14: registerCXFServlet
import javax.servlet.ServletRegistration.Dynamic; //导入依赖的package包/类
private static void registerCXFServlet(ServletContext servletContext) {
LOGGER.info("Registering CXF servlet...");
Dynamic dynamic =
servletContext.
addServlet(
"LDP4jFrontendServerServlet",
"org.apache.cxf.transport.servlet.CXFServlet");
dynamic.addMapping("/*");
/** See https://issues.apache.org/jira/browse/CXF-5068 */
dynamic.setInitParameter("disable-address-updates","true");
/** Required for testing */
dynamic.setInitParameter("static-welcome-file","/index.html");
dynamic.setInitParameter("static-resources-list","/index.html");
dynamic.setLoadOnStartup(1);
LOGGER.info("CXF servlet registered.");
}
示例15: testOnStartupWhenUrlPatternNotSet
import javax.servlet.ServletRegistration.Dynamic; //导入依赖的package包/类
@Test
public void testOnStartupWhenUrlPatternNotSet() throws ServletException {
ServletContext servletContext = mock(ServletContext.class);
Dynamic dynamic = mock(Dynamic.class);
when(servletContext.addServlet(RestServletInjector.SERVLET_NAME, RestServlet.class)).thenReturn(dynamic);
RestServletInitializer restServletInitializer = new RestServletInitializer();
restServletInitializer.setPort(TEST_PORT);
restServletInitializer.onStartup(servletContext);
verify(dynamic).setAsyncSupported(true);
verify(dynamic).addMapping(ServletConfig.DEFAULT_URL_PATTERN);
verify(dynamic).setLoadOnStartup(0);
}