Tutorial: Build Twitter with Groovy Grails in 90 Minutes

Поделиться
HTML-код
  • Опубликовано: 2 ноя 2024

Комментарии • 34

  • @GregJoshuaW
    @GregJoshuaW 10 лет назад +2

    That was pretty impressive. It's strange learning grails/rails with all of these abstractions that make our lives easier, but if you don't know the background it can be maddening trying to understand how anything works. This helped explain the "black box magic" quite a bit. Thanks!

  • @ryanpelletier361
    @ryanpelletier361 10 лет назад +1

    Thank you! This has helped me with many of the questions I had about how a grails application is formatted and put together, I also feel like I can actually ask better questions now.

  • @raymondloman
    @raymondloman 13 лет назад

    Excellent screencast and great introduction to Grails. Everyone can see the pace at which you can develop an enterprise app with Grails!

  • @jeetparmar1515
    @jeetparmar1515 10 лет назад

    Amazing video if you want to learn Groovy withing 1 hr. Great work by Jeff Brown..

  • @HarmFrielink
    @HarmFrielink 9 лет назад +3

    Unfortunately the presentation is based on an older version of grails. Since Grails 2.3 it is no longer possible to install plugins using the install-plugin command.
    Plugins must be declared in the grails-app/conf/BuildConfig.groovy file.
    Maybe there is an improved version of the presented grails build of the sftwitter applications. If so please let me know!

  •  11 лет назад +1

    One day progress for me - and I already love this. Great video, good talking. Hoped to see couple extra things, but that's just fine.
    Thanks for the video. :)

  • @fyeahkenji
    @fyeahkenji 13 лет назад +1

    excellent coding session but i wish the editor was maximized so we see all parts of the code

  • @SteveBarnesAU
    @SteveBarnesAU 12 лет назад

    Actually, Grails 2 is performing rather well when compared with other frameworks, including Ruby On Rails. I can't comment on older releases, but taking GORM in memory has been a big performance boost in Grails 2. Getting it right for the basics is easy. Planning out methods for larger apps takes good generic architecture skills, and then some for getting the right choices made in the framework you select. Did you ask someone to peer review your app, or the architectural/plugin decisions?

  • @billmilliganhisself
    @billmilliganhisself 13 лет назад

    This was helpful, but could be more so.
    1. The audio goes AFU at 48:47 for 30s.
    2. It looks like this was meant to be a gee-whiz-bang presentation. Nothing wrong with that per se, but I've been following along and building the app myself, pressing pause in the microseconds between inserting templates and switching screens. Trying to figure out what has been mistyped has been often difficult! It would be exceedingly helpful if the full source for this sample app were posted and linked here.

  •  12 лет назад

    This video has inspired buddytrading website cheers!

  • @Himura1414
    @Himura1414 6 лет назад +1

    Browsing the internet I found the source code for this presentation, a bit evolved though (to be compatible with newer versions of grails), this is the link to the whole source code github.com/grails-samples/grailstwitter

  • @goldiedscot1
    @goldiedscot1 12 лет назад

    What is the code that he added AT @11:03 IN CONFIG.GROOVY ,
    I didn't get the complete line of code ----- "grails.plugins.springsecurity.securityConfigType=grails.sprin"
    ...can anybody tell me the complete line...
    I've got stuck somewhere because of this....Plz.. help.....

  • @nitoro81
    @nitoro81 13 лет назад

    What did he do at 9:50 to generate all that code in a blink?

  • @EliasDorneles
    @EliasDorneles 12 лет назад

    apparently, it's a code snippet previously configured in the text editor.

  • @cleberfranciscoriva
    @cleberfranciscoriva 9 лет назад

    VALE A PENA COMPARTILHAR COM FRAMEWORK COM GOOGLE E RUclips

  • @jesse2006
    @jesse2006 6 лет назад

    Grails vs Spring? Which is better?

  • @eniveld
    @eniveld 12 лет назад

    At 48 minutes into the video the audio gets severely messed up - anyone else see that? Really like the presentation otherwise and wish I could have watched it through to the end.

  • @tgowda
    @tgowda 11 лет назад

    I faced the same problem and read documentation of the springsecurity plugin
    grails.plugins.springsecurity.securityConfigType = "InterceptUrlMap"
    grails.plugins.springsecurity.interceptUrlMap = [
    '/status/**': ['IS_AUTHENTICATED_FULLY'],
    '/login/**': ['IS_AUTHENTICATED_ANONYMOUSLY'],
    '/logout/**': ['IS_AUTHENTICATED_ANONYMOUSLY']
    ]

  • @nitoro81
    @nitoro81 13 лет назад

    Where's the use of JMS he announced at the beginning?! >:(

  • @Mercio2
    @Mercio2 4 года назад

    Great!

  • @RayVahey1
    @RayVahey1 12 лет назад

    For anyone following this with the latest grails, you no longer need to encrypt the password, it does it for you. Remove springSecurityService.encodePassword('password') from the bootstrap and just use 'password' or it will double encrypt

  • @proteus1
    @proteus1 11 лет назад +1

    Record has a scratch @ 48mins

  • @munnaprasad6493
    @munnaprasad6493 11 лет назад

    awesome ...

  • @ibrahimab
    @ibrahimab 13 лет назад

    i can paste in code and make a twitter application that fast too...

  • @Gurkburkinator
    @Gurkburkinator 12 лет назад

    @eniveld It just lasts for a minute or so

  • @nitoro81
    @nitoro81 13 лет назад

    @nitoro81
    He pasted some pre-writeen code, thus defying the whole premise of building an application live, from zero :/

  • @takacsot
    @takacsot 12 лет назад +1

    90 minutes with tons of predefined code snippet s :)

  • @michaelmruta
    @michaelmruta 12 лет назад

    guys stay away from this framework, it sucks.. (grails 1.3 - 2.0), it's very troublesome in big applications, eats a lot of resources, i found some memory leaks already and can't even find the issue in their site, otherwise you'll end up most likely too hate it anyway

  • @worstblondenightmare
    @worstblondenightmare 13 лет назад

    Where are the women in this video???

  • @carlosmunoz_gp
    @carlosmunoz_gp 10 лет назад

    not really helpful, unable to follow