Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
44 views

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 ...
zhjy's user avatar
  • 1
0 votes
2 answers
262 views

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 @...
JaveysWuu's user avatar
1 vote
1 answer
74 views

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 ...
Vuzi's user avatar
  • 185
0 votes
1 answer
34 views

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
user3347275's user avatar
1 vote
1 answer
64 views

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 ...
Matt Hall's user avatar
  • 2,699
1 vote
1 answer
24 views

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.
Matt Hall's user avatar
  • 2,699
1 vote
1 answer
55 views

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 ...
Matt Hall's user avatar
  • 2,699
0 votes
1 answer
75 views

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!
Naveen's user avatar
  • 38
0 votes
1 answer
40 views

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(...
Vuzi's user avatar
  • 185
3 votes
1 answer
1k views

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 (&...
Anderson Gomes's user avatar
0 votes
1 answer
71 views

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) ...
kenw's user avatar
  • 1
0 votes
2 answers
64 views

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.
ytw80's user avatar
  • 1
2 votes
1 answer
235 views

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?
The Oracle's user avatar
  • 2,523
0 votes
1 answer
197 views

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: ...
Jim's user avatar
  • 1
1 vote
1 answer
90 views

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/...
Gelin Luo's user avatar
  • 14.5k