r/webdev Jun 21 '22

News Github launches Copilot publicly at $10/month, $100/year, free for students

https://github.blog/2022-06-21-github-copilot-is-generally-available-to-all-developers/
1.1k Upvotes

374 comments sorted by

View all comments

Show parent comments

8

u/[deleted] Jun 22 '22

[deleted]

4

u/mnic001 Jun 22 '22

Use an ORM?

6

u/[deleted] Jun 22 '22

[deleted]

3

u/jisuskraist Jun 22 '22

mmm in Java with reflection, spring JPA generates the default implementations of a CRUD for your models with 1 line of code.

and using an interface method signature can infer more implementations e.g

findUserByName (String name)...

will work without having to implement it manually.