T4Spring

T4Spring is a code generation tool for Spring MVC apps that creates strongly typed views that eliminate the use of literal strings in many places. e.g. instead of @RequestMapping(value = "/", method = RequestMethod.GET) public String index(ModelMap map) { map.addAttribute("msg", "literal strings are no good!!"); return "Home/index"; } T4Spring lets you write @RequestMapping(value = "/", method = RequestMethod.GET) public String index(ModelMap map) { map.addAttribute("msg", "Hello T4Spring!!"); return Views.Home.index; }

License

License

GroupId

GroupId

org.bitbucket.omargameelsalem
ArtifactId

ArtifactId

T4Spring
Last Version

Last Version

1.0
Release Date

Release Date

Type

Type

jar
Description

Description

T4Spring
T4Spring is a code generation tool for Spring MVC apps that creates strongly typed views that eliminate the use of literal strings in many places. e.g. instead of @RequestMapping(value = "/", method = RequestMethod.GET) public String index(ModelMap map) { map.addAttribute("msg", "literal strings are no good!!"); return "Home/index"; } T4Spring lets you write @RequestMapping(value = "/", method = RequestMethod.GET) public String index(ModelMap map) { map.addAttribute("msg", "Hello T4Spring!!"); return Views.Home.index; }

Download T4Spring

How to add to project

<!-- https://jarcasting.com/artifacts/org.bitbucket.omargameelsalem/T4Spring/ -->
<dependency>
    <groupId>org.bitbucket.omargameelsalem</groupId>
    <artifactId>T4Spring</artifactId>
    <version>1.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.bitbucket.omargameelsalem/T4Spring/
implementation 'org.bitbucket.omargameelsalem:T4Spring:1.0'
// https://jarcasting.com/artifacts/org.bitbucket.omargameelsalem/T4Spring/
implementation ("org.bitbucket.omargameelsalem:T4Spring:1.0")
'org.bitbucket.omargameelsalem:T4Spring:jar:1.0'
<dependency org="org.bitbucket.omargameelsalem" name="T4Spring" rev="1.0">
  <artifact name="T4Spring" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.bitbucket.omargameelsalem', module='T4Spring', version='1.0')
)
libraryDependencies += "org.bitbucket.omargameelsalem" % "T4Spring" % "1.0"
[org.bitbucket.omargameelsalem/T4Spring "1.0"]

Dependencies

test (1)

Group / Artifact Type Version
junit : junit jar 4.10

Project Modules

There are no modules declared in this project.

Versions

Version
1.0