15 questions
0
votes
1
answer
44
views
actframework can't save in database using $.merge
i'am trying to read data from a form and save it to database.first i read entity from database and use $.merge(formdata).filter("-id").to(entity) .I print the value and it's changed ...
0
votes
2
answers
262
views
How to create global exception handler
In actframework, we can use @catch to handle exception, but it's only working in current class and parent class. What can i do if i want to create a global exception handler, just like @...
1
vote
1
answer
74
views
Deploy Act Framework to production in linux server running weblogic server
I created an Act.Framework scheduler application (java) that process csv files from ftp server. Everything works well in my local environment on Windows 10. How do I deploy the application to the Dev ...
0
votes
1
answer
34
views
Limit size of the REST request (GET)
I use Act.Framework for long requests, but I've noticed that the (JSON) response is truncated.
Is there any limit in the response size?
Ahmed
1
vote
1
answer
64
views
How do I deploy an Act framework app to Heroku?
There is no official support of Act on Heroku, however the Maven buildpack seems to do almost everything the app needs, except start it properly. Any recommended settings and/or Profiles to start the ...
1
vote
1
answer
24
views
How do you tell if you're running in test mode in the Act framework?
How do you determine if you're running in test mode in the Act framework? The App.instance().mode() variable only returns DEV or PROD.
1
vote
1
answer
55
views
Is there a way to await a Future completion that will not block the execution thread in Act Framework?
I have a controller action that depends on several parallel Future tasks running on several Executors. Right now I'm starting several tasks on the Executors, then calling future.get() in the action ...
0
votes
1
answer
75
views
How to Install Act Framework on Mac
I have installed java and configured the path and Trying to use Intellij IDE.
But how to install act framework and get started? There is no detailed installation guide on the website!
0
votes
1
answer
40
views
Add multiple controllers in "AppEntry" class
I want to add multiple controller class to a single "AppEntry" class.
I have LoginService, ClientService, ProductService, AuthenticateService controllers and one "MerchandiseServiceApp" with the main(...
3
votes
1
answer
1k
views
JWT with invalid format
when checking the token on https://jwt.io/ I get Warning: Looks like your JWT signature is not encoded correctly using base64url (https://www.rfc-editor.org/rfc/rfc4648#section-5). Note that padding (&...
0
votes
1
answer
71
views
Issue with @Before and POST request
I'm trying to implement simple security using Interception following the example in the documentation:
@Before(except= {"register", "login"})
public void checkAuthentication(H.Session session) ...
0
votes
2
answers
64
views
Got App not found issue when run jar file of actframework
i have issue when i run fat jar of actframework which is created using shade plugin.
java -jar jarFile
I still got App not found issue. What is missing ? Appreciate for you help. Thanks.
2
votes
1
answer
235
views
How to run an Act framework application without using intelliJ IDEA
I just started with Act Framework but I do not want to use intelliJ IDEA. How do I run my app on windows and on linux using CLI?
0
votes
1
answer
197
views
actframework run error: org.osgl.exception.UnexpectedException: App not found
java code:
public class App {
public static void main(String[] args) throws Exception {
Act.start("Hello World Demo");
}
}
error message:
pid: 1
profile: dev
mode: DEV
zen: ...
1
vote
1
answer
90
views
How to make ActFramework look for template from a different root folder when user is requesting using a specific locale
I am trying to i18n my application and I have the default template files sit under resources/rythm folder. However I also have a corresponding template files for Chinese language sit inside resources/...