org.apache.tiles.impl.BasicTilesContainer Java Examples

The following examples show how to use org.apache.tiles.impl.BasicTilesContainer. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: TilesConfigurerTests.java    From spring-analysis-note with MIT License 6 votes vote down vote up
@Test
public void simpleBootstrap() {
	MockServletContext servletContext = new MockServletContext();

	TilesConfigurer tc = new TilesConfigurer();
	tc.setDefinitions("/org/springframework/web/servlet/view/tiles3/tiles-definitions.xml");
	tc.setCheckRefresh(true);
	tc.setServletContext(servletContext);
	tc.afterPropertiesSet();

	ApplicationContext tilesContext = ServletUtil.getApplicationContext(servletContext);

	BasicTilesContainer container = (BasicTilesContainer) TilesAccess.getContainer(tilesContext);
	Request requestContext = new ServletRequest(container.getApplicationContext(),
			new MockHttpServletRequest(), new MockHttpServletResponse());
	assertNotNull(container.getDefinitionsFactory().getDefinition("test", requestContext));

	tc.destroy();
}
 
Example #2
Source File: TilesConfigurerTests.java    From java-technology-stack with MIT License 6 votes vote down vote up
@Test
public void simpleBootstrap() {
	MockServletContext servletContext = new MockServletContext();

	TilesConfigurer tc = new TilesConfigurer();
	tc.setDefinitions("/org/springframework/web/servlet/view/tiles3/tiles-definitions.xml");
	tc.setCheckRefresh(true);
	tc.setServletContext(servletContext);
	tc.afterPropertiesSet();

	ApplicationContext tilesContext = ServletUtil.getApplicationContext(servletContext);

	BasicTilesContainer container = (BasicTilesContainer) TilesAccess.getContainer(tilesContext);
	Request requestContext = new ServletRequest(container.getApplicationContext(),
			new MockHttpServletRequest(), new MockHttpServletResponse());
	assertNotNull(container.getDefinitionsFactory().getDefinition("test", requestContext));

	tc.destroy();
}
 
Example #3
Source File: TilesView.java    From lams with GNU General Public License v2.0 6 votes vote down vote up
@Override
public boolean checkResource(final Locale locale) throws Exception {
	TilesContainer container = ServletUtil.getContainer(getServletContext());
	if (!(container instanceof BasicTilesContainer)) {
		// Cannot check properly - let's assume it's there.
		return true;
	}
	BasicTilesContainer basicContainer = (BasicTilesContainer) container;
	TilesApplicationContext appContext = new ServletTilesApplicationContext(getServletContext());
	TilesRequestContext requestContext = new ServletTilesRequestContext(appContext, null, null) {
		@Override
		public Locale getRequestLocale() {
			return locale;
		}
	};
	return (basicContainer.getDefinitionsFactory().getDefinition(getUrl(), requestContext) != null);
}
 
Example #4
Source File: TilesConfigurerTests.java    From spring4-understanding with Apache License 2.0 6 votes vote down vote up
@Test
public void simpleBootstrap() {
	MockServletContext servletContext = new MockServletContext();

	TilesConfigurer tc = new TilesConfigurer();
	tc.setDefinitions("/org/springframework/web/servlet/view/tiles3/tiles-definitions.xml");
	tc.setCheckRefresh(true);
	tc.setServletContext(servletContext);
	tc.afterPropertiesSet();

	ApplicationContext tilesContext = ServletUtil.getApplicationContext(servletContext);

	BasicTilesContainer container = (BasicTilesContainer) TilesAccess.getContainer(tilesContext);
	Request requestContext = new ServletRequest(container.getApplicationContext(),
			new MockHttpServletRequest(), new MockHttpServletResponse());
	assertNotNull(container.getDefinitionsFactory().getDefinition("test", requestContext));

	tc.destroy();
}
 
Example #5
Source File: TilesView.java    From spring4-understanding with Apache License 2.0 6 votes vote down vote up
@Override
public boolean checkResource(final Locale locale) throws Exception {
	TilesContainer container = ServletUtil.getContainer(getServletContext());
	if (!(container instanceof BasicTilesContainer)) {
		// Cannot check properly - let's assume it's there.
		return true;
	}
	BasicTilesContainer basicContainer = (BasicTilesContainer) container;
	TilesApplicationContext appContext = new ServletTilesApplicationContext(getServletContext());
	TilesRequestContext requestContext = new ServletTilesRequestContext(appContext, null, null) {
		@Override
		public Locale getRequestLocale() {
			return locale;
		}
	};
	return (basicContainer.getDefinitionsFactory().getDefinition(getUrl(), requestContext) != null);
}
 
Example #6
Source File: TilesConfigurerTests.java    From spring4-understanding with Apache License 2.0 6 votes vote down vote up
@Test
@SuppressWarnings("deprecation")
public void simpleBootstrap() {
	MockServletContext sc = new MockServletContext();
	TilesConfigurer tc = new TilesConfigurer();
	tc.setDefinitions("/org/springframework/web/servlet/view/tiles2/tiles-definitions.xml");
	tc.setCheckRefresh(true);
	tc.setServletContext(sc);
	tc.afterPropertiesSet();

	BasicTilesContainer container = (BasicTilesContainer) ServletUtil.getContainer(sc);
	TilesRequestContext requestContext = new ServletTilesRequestContext(
			container.getApplicationContext(), new MockHttpServletRequest(), new MockHttpServletResponse());
	assertNotNull(container.getDefinitionsFactory().getDefinition("test", requestContext));

	tc.destroy();
}
 
Example #7
Source File: TilesConfigurer.java    From lams with GNU General Public License v2.0 4 votes vote down vote up
@Override
protected BasicTilesContainer instantiateContainer(TilesApplicationContext context) {
	return (useMutableTilesContainer ? new CachingTilesContainer() : new BasicTilesContainer());
}
 
Example #8
Source File: TilesConfigurer.java    From spring4-understanding with Apache License 2.0 4 votes vote down vote up
@Override
protected BasicTilesContainer instantiateContainer(TilesApplicationContext context) {
	return (useMutableTilesContainer ? new CachingTilesContainer() : new BasicTilesContainer());
}