templates.plugins.html Maven / Gradle / Ivy
{#==========================================
Plugins
==========================================#}
{% extends "./layout.html" %}
{% block sectionClasses %}plugins{% endblock %}
{% block meta_title %}Plugins{% endblock %}
{% block meta_description %}Plugins to extend Spincast{% endblock %}
{% block scripts %}
{% endblock %}
{% block body %}
    
    
    
    
     
        
            
                Most plugins provide a Guice module that you have to install in your application. By doing so,
                extra components are bound and can be used in your application. 
                The plugins annotated with  default are
                already installed if you use the spincast-default artifact!
            
        
    
        
	
	
        
            
                
                    Spincast Routing
                    The default router, and other routing related components.
                    
                         default
                        
                      
                    
                        
                     
                
            
        
    
        
            
                
                    Spincast Request
                    Components to access the current HTTP request information.
                    
                         default
                        
                      
                    
                        
                     
                
            
        
        
        
            
                
                    Spincast Response
                    Components to manipulate the headers and content sent as the response for a request.
                    
                         default
                        
                      
                    
                        
                     
                
            
        
        
        
            
                
                    Spincast Undertow
                    
                        Undertow is the  default HTTP server provided by Spincast.
                        It is modern, performant, and easily embeddable.
                    
                    
                         default
                        
                      
                    
                        
                     
                
            
        
        
        
            
                
                    Spincast Locale Resolver
                    
                        Provides an implementation of ILocaleResolver which is
                        used to find the locale/language to use.
                    
                    
                         default
                        
                      
                    
                        
                     
                
            
        
        
        
            
                
                    Spincast Cookies
                    
                        Provided components to read and write cookies.
                        
                    
                    
                         default
                        
                      
                    
                        
                     
                
            
        
        
        
            
                
                    Spincast Variables Add-on
                    Provides a request context add-on to read and write request scoped variables.
                    
                         default
                        
                      
                    
                        
                     
                
            
        
        
        
            
                
                    Spincast Templating Add-on
                    Provides a request context add-on to easily access templating functionalities.
                    
                         default
                        
                      
                    
                        
                     
                
            
        
        
        
        
            
                
                    Spincast Pebble
                    
                        Provides an implementation of ITemplatingEngine, for
                        templating functionalities, using Pebble.
                    
                    
                         default
                        
                      
                    
                        
                     
                
            
        
        
        
            
                
            
        
        
        
            
                
            
        
      
        
            
                
                    Spincast Config
                    
                        Provides default values for the required Spincast configurations.
                    
                    
                         default
                        
                      
                    
                        
                     
                
            
        
        
        
            
                
                    Spincast Dictionary
                    
                        Provides default labels for a Spincast application.
                    
                    
                         default
                        
                      
                    
                        
                     
                
            
        
        
        
            
                
            
        
        
        
            
                
                    Spincast Properties File Config
                    
                        Allows an application to define its configurations in a
                        .properties file.
                    
                    
                      
                    
                        
                     
                
            
        
 
    
 
{% endblock %}    
 Plugins