actframework
actframework copied to clipboard
An easy to use Java MVC server stack
Bumps [undertow-core](https://github.com/undertow-io/undertow) from 2.1.6.Final to 2.2.15.Final. Commits c0b0d33 Prepare 2.2.15.Final a3aebce Merge pull request #1290 from carterkozak/UNDERTOW-2019 8531ff7 Merge pull request #1277 from gaol/test_undertow-1981 cda3aae Merge pull request #1289 from...
Bumps [fastjson](https://github.com/alibaba/fastjson) from 1.2.75 to 1.2.83. Release notes Sourced from fastjson's releases. FASTJSON 1.2.83版本发布(安全修复) 这是一个安全修复版本,修复最近收到在特定场景下可以绕过autoType关闭限制的漏洞,建议fastjson用户尽快采取安全措施保障系统安全。 安全修复方案 :https://github.com/alibaba/fastjson/wiki/security_update_20220523 Issues 安全加固 修复JDK17下setAccessible报错的问题 #4077 下载 https://repo1.maven.org/maven2/com/alibaba/fastjson/1.2.83/ 文档 https://github.com/alibaba/fastjson/wiki/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98 源码 https://github.com/alibaba/fastjson/tree/1.2.83 fastjson 1.2.79版本发布,BUG修复 这又是一个bug...
404 not found https://thinking.studio/blog/declarative-testing-with-act-framework/
idea正常,但是想在vscode试试,结果提示 `DB service not initialized: No DB plugin found` 已经安装Vscode插件 [Ebean Enhancement 11 plugin for Java](https://marketplace.visualstudio.com/items?itemName=shabirmean.ebean-enhancement) 并且已在项目环境配置插件需要的启动类信息 ```json { "configurations": [ { "name": "Ebean enhanced configuration", "mainClass": "cn.anline.cx.sc.serve.Ann", "vmArgs": [...
```` @Before(only = {"create", "update"}) public void beforeSave(SysUser vo) { if (vo != null && S.isNotEmpty(vo.getUserName())) { boolean isRepeat = service.hasRepeatUserName(vo); if (isRepeat) { ConstraintViolation violation = new BaseConstraintViolation("用户名已存在!"); context.addViolation("vo.userName",...
```` @PropertySpec("userName as 用户名, realName as 姓名") ```` 当使用该注解时,导出数据不显示
 实现了自定义的图片验证码,但是请求此地址不能保存Session,看了下响应头没有Cookie信息。 而Spring Boot一样的方式返回验证码是有Session的 
@greenlaw110 大佬 我在@Before中使用ActionContext.renderArg()方法,注入了一个对象,例如为UserEntity, 然后我可以在Action方法中的参数写上UserEntity userEntity,act会帮我自动注入这个对象。 但是在写上UserEntity后,我有一个请求,参数为{"a": "b", "b": "c"},我新建了一个pojo对象 ```java class Test { private String a; private String b; } ``` 于是,我尝试在Action方法的参数中写上Test test,UserEntity userEntity,其中userEntity是被正常注入的,test为null。 当我在Action方法的参数只写Test test的时候,是能映射请求参数的。 所以请问,我可以在Action方法的参数中同时接受这2个值吗?如果可以,应该怎么操作
@Before注解中,其中priority属性默认为0。 我这里有2个@Before注解,其中一个没有填写priority属性,其中一个填写了priority属性,填写了priority属性(无论为何值)的before方法会慢于没有填写priority属性的before方法,  如图所示,其中没有填写priority属性的before方法为null,填写了的为填写的值,但是为null的before方法总是会在填写了priority属性的before方法之前执行 按照@Before注解,没有填写priority属性默认值应为0
Annotation could have default value, e.g. [Before](https://github.com/osglworks/java-mvc/blob/master/src/main/java/org/osgl/mvc/annotation/Before.java) ``` public @interface Before { int priority() default 0; ... } ``` However the bytecode scanner will not be able to set default...