com.jslsolucoes:tagria-tag-auth-v4

Action based component suit that integrates with spring mvn,vraptor,struts 2,servlet and any kind of action based mvn framework

License

License

GroupId

GroupId

com.jslsolucoes
ArtifactId

ArtifactId

tagria-tag-auth-v4
Last Version

Last Version

4.0.17
Release Date

Release Date

Type

Type

jar
Description

Description

Action based component suit that integrates with spring mvn,vraptor,struts 2,servlet and any kind of action based mvn framework
Project Organization

Project Organization

JSL Solucoes LTDA

Download tagria-tag-auth-v4

How to add to project

<!-- https://jarcasting.com/artifacts/com.jslsolucoes/tagria-tag-auth-v4/ -->
<dependency>
    <groupId>com.jslsolucoes</groupId>
    <artifactId>tagria-tag-auth-v4</artifactId>
    <version>4.0.17</version>
</dependency>
// https://jarcasting.com/artifacts/com.jslsolucoes/tagria-tag-auth-v4/
implementation 'com.jslsolucoes:tagria-tag-auth-v4:4.0.17'
// https://jarcasting.com/artifacts/com.jslsolucoes/tagria-tag-auth-v4/
implementation ("com.jslsolucoes:tagria-tag-auth-v4:4.0.17")
'com.jslsolucoes:tagria-tag-auth-v4:jar:4.0.17'
<dependency org="com.jslsolucoes" name="tagria-tag-auth-v4" rev="4.0.17">
  <artifact name="tagria-tag-auth-v4" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.jslsolucoes', module='tagria-tag-auth-v4', version='4.0.17')
)
libraryDependencies += "com.jslsolucoes" % "tagria-tag-auth-v4" % "4.0.17"
[com.jslsolucoes/tagria-tag-auth-v4 "4.0.17"]

Dependencies

compile (5)

Group / Artifact Type Version
com.jslsolucoes : tagria-tag-base-v4 jar 4.0.17
org.apache.commons : commons-lang3 jar 3.9
commons-io : commons-io jar 2.6
org.apache.commons : commons-collections4 jar 4.3
org.slf4j : slf4j-api jar 1.7.25

provided (1)

Group / Artifact Type Version
javax : javaee-api jar 8.0

test (3)

Group / Artifact Type Version
junit : junit jar 4.12
org.mockito : mockito-all jar 1.10.19
org.slf4j : slf4j-log4j12 jar 1.7.25

Project Modules

There are no modules declared in this project.

tagria

Tagria is an open source component suit framework that help build beautiful view in minutes. Tagria integrates perfectly with any action based mvc framework for java : Tagria it`s easy , fast and productive.

Tested at moment in MVC frameworks and specs :

  • Spring MVC
  • Vraptor
  • Struts
  • Servlet
  • Mentawai

Tested at moment in applications servers :

  • Tomcat
  • Jetty
  • Wildfly
  • Jboss
  • Websphere

Features :

  • Full html5,css3 support
  • Cross browser support components
  • Responsive
  • W3C compatible
  • Support for i18n (internationalization)

The demo and documentation about components of tagria is hosted in : https://doc-tagrialib.jslsolucoes.com


You can also self host docs following steps:

git clone https://github.com/jslsolucoes/tagria.git
cd  tagria
mvn clean install -Dgpg.skip
mv tagria-doc-v4/target/tagria-doc-v4.war yourwildfly18+home/standalone/deployments/tagria-doc-v4.war
http://localhost:8080/tagria-doc-v4/app/home


Quick start installation and configuration :

Add latest maven dependency to your project : check for versions here

	
<dependency>
	<groupId>com.jslsolucoes</groupId>
	<artifactId>tagria-lib-v4</artifactId>
	<version>latest-version</version>
</dependency>
	

Create an jsp for example index.jsp and import directives

	
	
<%@ taglib  uri="http://v4.tagria.jslsolucoes.com/tags/html" prefix="html"%>
<%@ taglib  uri="http://v4.tagria.jslsolucoes.com/tags/ajax" prefix="ajax"%>
<%@ taglib  uri="http://v4.tagria.jslsolucoes.com/tags/x" prefix="x"%>
<%@ taglib uri="http://v4.tagria.jslsolucoes.com/tags/security" prefix="security"%>
<html:view title="My title">
	<html:alert state="info">
		My firts view	
	</html:alert>
</html:view>

Some configuration can be change by creating an tagrialib.xml file in source folder like, all options is optional by default :

	
	<?xml version="1.0" encoding="ISO-8859-1" ?>
	<tagrialib>
		<templates>
			<template>
				<name>master</name>
				<path>/WEB-INF/jsp/app/template.jsp</path>
			</template>
		</templates>
		<formatters>
			<formatter>
				<class>com.package.YourCustomFormatterThatImplementsFormatterInterface</class>
			</formatter>
		</formatters>
		<exporters>
			<exporter>
				<class>com.package.YourCustomExporterThatImplementsExporterInterface</class>
			</exporter>
		</exporters>
		<warning>
			<componentMountTimeThreshold>200</componentMountTimeThreshold>
			<componentDataSetThreshold>300</componentDataSetThreshold>
		</warning>
		<cdn>
			<enabled>false</enabled>
			<url>d35ckkxcy33ron.cloudfront.net</url>
		</cdn>
		<encoding>UTF-8</encoding>
		<skin>default</skin>
		<locale>en</locale>
		<security>
			<class>com.package.YourAuthorizerThatImplementsAuthorizerInterface</class> 
		</security>
	</tagrialib> 
	

if you want, can configure servlet manually

	
		<servlet>
			<servlet-name>tagria-v4</servlet-name>
			<servlet-class>com.jslsolucoes.tagria.lib.v4.servlet.Tagria</servlet-class>
		</servlet>
		
		 <servlet-mapping>
			<servlet-name>tagria-v4</servlet-name>
			<url-pattern>/tagria/v4/*</url-pattern>
		</servlet-mapping>
		
		<servlet>
			<servlet-name>tagria-exporter-v4</servlet-name>
			<servlet-class>com.jslsolucoes.tagria.lib.v4.servlet.TagriaExporter</servlet-class>
		</servlet>
		
		 <servlet-mapping>
			<servlet-name>tagria-exporter-v4</servlet-name>
			<url-pattern>/tagria-exporter/v4</url-pattern>
		</servlet-mapping>
	

TagriaLib Framework has some official certification programs. Become an Tagria Library Framework Certified and demonstrate understanding of fundamental TagriaLib concepts needed to undertake any web java project using Tagria Library Framework as view framework.

Authorized companies as TagriaLib Framework Certification Test Center:

If you want be a TagriaLib Framework Certification Test Center partner please contact us via issue request (https://github.com/jslsolucoes/tagria/issues)

Versions

Version
4.0.17
4.0.16
4.0.15
4.0.14
4.0.13
4.0.12
4.0.11
4.0.10
4.0.9
4.0.8
4.0.7
4.0.6
4.0.5
4.0.4
4.0.3