Posts by Roberto Messa • 44 points
2 posts
-
-1
votes1
answer40
viewsQ: Credentials in php file
I want to put the credentials in a php file and I will use the following solution to deploy in production: config.php in the local environment $username = 'adm'; $senha = 'aaa'; push to the…
-
2
votes1
answer75
viewsA: Who implements the Spring Repository interfaces?
Are the Annotations of the Spring that do the magic. When you wear the @Autowired, Spring locates your interface, creates 1 class and implements everything. This is all done with Annotations and…