| License |
License |
|---|---|
| GroupId | GroupIdorg.bitbucket.omargameelsalem |
| ArtifactId | ArtifactIdT4Spring |
| Last Version | Last Version1.0 |
| Release Date | Release Date |
| Type | Typejar |
| Description |
DescriptionT4Spring
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;
}
|
| Filename | Size |
|---|---|
| T4Spring-1.0.pom | |
| T4Spring-1.0.jar | 8 KB |
| T4Spring-1.0-sources.jar | 3 KB |
| T4Spring-1.0-javadoc.jar | 26 KB |
| Browse |
<!-- 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"]
| Group / Artifact | Type | Version |
|---|---|---|
| junit : junit | jar | 4.10 |