Here are my basic questionsa. Does play need linux/unix? Can it run on windows?
b. Does Play follow a UI framework?
c. Can we just write POJO?
--To view this discussion on the web visit https://groups.google.com/d/msg/play-framework/-/C-jxOloOwCoJ.
You received this message because you are subscribed to the Google Groups "play-framework" group.
To post to this group, send email to play-fr...@googlegroups.com.
To unsubscribe from this group, send email to play-framewor...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/play-framework?hl=en.
About POJOs, you can write them, but it requires more work, which maybe is not the best approach, since the whole point of using a framework is to do less work.I just wrote a gist to show how to use POJOs:
On Sat, Jul 14, 2012 at 2:07 AM, Alex Xandra Albert Sim <bert...@gmail.com> wrote:
Here are my basic questionsa. Does play need linux/unix? Can it run on windows?No, play does not need linux / unix. You can run it in Windows as long as you have Java / Scala installed. By Java / Scala I mean JRE, JDK, and other softwares that you need to run Java / Scala. All of it runs on Windows too. In fact, 100% of my development work is in Windows.b. Does Play follow a UI framework?Could you please elaborate what do you mean by UI framework? Something like Qt in C++ world?If it's something like Qt, in the web world we use HTML for displaying things (like QML in Qt world), CSS for designing the HTML and Javascript for interactivity. There's a lot of CSS and Javascript frameworks, and each one of them has their own toolchain / framework. Play should support them all since they are client side code. They run in browser (in contrast to Play which run in server).If it's nothing lke Qt, please explain more about your definiiton of "UI Framework".c. Can we just write POJO?I don't think we can, but I'll let someone answer this since I'm not sure.Hope this helps.--To view this discussion on the web visit https://groups.google.com/d/msg/play-framework/-/C-jxOloOwCoJ.
You received this message because you are subscribed to the Google Groups "play-framework" group.
To post to this group, send email to play-framework@googlegroups.com.
To unsubscribe from this group, send email to play-framework+unsubscribe@googlegroups.com.
Hi Alex,This definitely helps.But the very reason I wanted to try this is due to Java and I have a decent knowledge of Java. But is Scala a must to work with play framework?
Regarding the UI framework, I wanted to see if I have to create a CRUD screen, I dont have to write that for every Database table instead I have a common UI class that I can derive from for all my different tables. Does it even make sense? Please let me know.
Can you please suggest a easy CSS Javascript framework?
At the end of the day I am looking to create a CRUD screen in play framework just using Java. (of course with java classes derived from play framwork classes).