Posts by Ana Caroline Rodrigues • 95 points
3 posts
-
6
votes3
answers62
viewsQ: Best way to apply a Pattern to the acronym
I have the following possible returns: AB A1 To The first will always be a letter, the second may or may not occur and may be letter or number. In Javascript it looks like this (Example): if…
-
1
votes0
answers38
viewsQ: MVC Routes and Controllers architecture with multiple versions using Spark
I am implementing a Rest API in Java using the framework Spark. I need to split the routes into two versions or more: v1 and v2. I know the Spark provides the path(), I believe it is not difficult.…
-
2
votes1
answer62
viewsQ: How to return a data collection using Doctrine Resultsetmapping?
I have the following script that is functional: SELECT r.coluna_1 as Coluna_1, e.coluna_1 as Coluna_2, FROM produto r INNER JOIN empresa e ON r.id_empresa = e.id_empresa WHERE r.id_tipo = 'N' AND…