Posts by Braian Silva • 333 points
14 posts
-
0
votes1
answer241
viewsQ: How to take src from an img of <content:encoded> Angular 7
I’m doing an Rss Feed and I want to get an image of <content:encoded> and use as thumbnail, how to solve? I’m using this feed as an example: http://parceriasocialdeempregos.com.br/feed…
-
0
votes2
answers88
viewsA: Problem with creating a new Angular application
Has been corrected for vulnerability. Delete the foldernode_modules and the package-lock.json,then execute the commands: npm install npm audit npm audit fix npm audit Will appear found 0…
-
3
votes2
answers313
viewsQ: Spring data Jpa implement generic methods
I have 3 services with these methods in common create(),deleteById(),findAll(),getById() and update(). @Service public class AutorService {create(),deleteById(),findAll(),getById(),update(), etc...}…
-
1
votes1
answer403
viewsA: Error while accessing route released with Spring boot
Remove .antMatchers("/home").permitAll() and add. @Override public void configure(WebSecurity web) throws Exception { web.ignoring().antMatchers("/home"); } So you don’t need authentication to…
-
1
votes1
answer673
viewsA: Angular UI-Carousel Bootstrap with Multiple Slides
I chose to use Owl Carousel in Angularjs. app.owl.js angular .module('appCliente.owl', []); function owlCarousel() { var directive = { restrict: 'E', transclude: false, link: link }; return…
-
1
votes1
answer359
viewsQ: Visitor counter using Spring Boot
I have a project of Mangas using Spring Boot with Angularjs and, I wanted to implement a counter of views, accesses, for each visualized manga. So I could classify the Manga in Category of most…
-
1
votes1
answer673
viewsQ: Angular UI-Carousel Bootstrap with Multiple Slides
I’m using the Carousel UI-Bootstrap with Angularjs, but only shows 1 slide at a time. I wanted multiple slides equal to these examples below. Bootstrap 3 Multiple Slide Carousel, another example,…
-
-1
votes1
answer1390
viewsQ: How to upload multiple images using spring boot
I am developing a Mangas project and want to save several photos in the database. Paginascontroller @RequestMapping(value="/pagina", method = RequestMethod.POST) public @ResponseBody…
-
0
votes1
answer4414
viewsQ: Can not deserialize instance of java.util.Arraylist out of START_OBJECT token
Using angular, I am unable to insert an array of genres into the Genero property that is in the Manga object. Using Postman to insert the Generos array into the /sleeve API would look like this. {…
-
1
votes0
answers656
viewsQ: Problem using @Jsonignore Spring Boot
I have a @Manytoone relationship between Manga and Author, where Many Manga can have an Author and an Author can have many Manga. I would like to list all the Manga with each Author, and when…
-
0
votes1
answer520
viewsQ: Angularjs, How to create Checkbox to insert array in Mongodb
I created a collection on mondoDB called Sleeves, where you have "name, author, genre and info" Gender is array. I have a form that will receive the values name, author and info, the Checkbox must…
-
3
votes1
answer342
viewsQ: Mongodb references
I intend to make a website. Will have two Collections "sleeve stripes", where it will bear the name of several sleeves. "genero", where will have the generos type "Action," On the website you will…
mongodbasked Braian Silva 333 -
1
votes1
answer301
viewsQ: What to use to create web site and android app
I want to create a website to host manga or link the sleeves of Fansub. Let’s say a Manga Host and create an app on android to visualize the sleeves without having to enter the site. How can I do…
-
1
votes1
answer423
viewsQ: Make anime and manga gallery in c# desktop
For you to read an online manga, you have to go to some sites like "Mangasproject" to see what was released and view the manga to read. I want to do an anime gallery to store photos and description…