You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+66-36Lines changed: 66 additions & 36 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,13 @@ Generate typescript services and type interfaces from spring annotated @RestCont
15
15
16
16
Get strongly typed interfaces for your spring-boot microservices in no time.
17
17
18
+
# Release 0.2.0 is here, What's new?
19
+
* The default templates now generate TypeScript-Services using HttpClient from Angular 4.3
20
+
* We added support for @RequestParam
21
+
* All templates can now be configured in a single place through the use of a single Annotation [@TypeScriptTemplatesConfiguration](https://github.com/leandreck/spring-typescript-services/blob/development/annotations/src/main/java/org/leandreck/endpoints/annotations/TypeScriptTemplatesConfiguration.java)<br>
22
+
Now you can even provide your own templates for index.ts and api.module.ts
23
+
24
+
18
25
# What is it?
19
26
A Java annotation processor to generate a service and TypeScript types to access your spring @RestControllers.
20
27
@@ -38,64 +45,87 @@ Just specify the dependency in your maven based build.
38
45
```
39
46
40
47
# Example
41
-
The following snippet will produce a TestTypeScriptEndpoint.ts and a ISubType.model.ts file.
48
+
The following snippet will produce an Angular Module.
0 commit comments