Tagged Questions
2
votes
6answers
276 views
What benefits does main(…) provide over using a static-initializer as a pseudo entry-point?
The entry point into a program in java is typically something like this
// MyMain.java
public class MyMain{
//whatever
public static void main(String args[]){
...
0
votes
1answer
96 views
Play framework entry point
When I send a request from my browser to Play! on localhost:9000, what object/method in PlayFramework first starts processing my request to the server?
I know PlayFramework uses netty framework to ...
0
votes
2answers
214 views
Redirect to external link in AppEngine java?
I want to redirect to a external webpage but I don't know how to do that because in the EntryPoint I don't have Request and Response like in HttpServlets.
How can I do that?
0
votes
1answer
841 views
How to setup alternate entry point in Blackberry application?
How to setup alternate entrypoint in Blackberry Application.There will be 2 application
UI Application
Background Application: will run on autostart.
There is a blackberry knowledge center ...
-2
votes
1answer
50 views
Objectify at GWT entry point
I'm very new to Google Web Toolkit (GWT) and Google Apps Engine. I want to use Objectify directly in the entry point so that I can utilize GWT in my apps. (I use java)
Is it possible to load ...