jeesite icon indicating copy to clipboard operation
jeesite copied to clipboard

Java rapid development platform, based (Spring Boot, Spring MVC, Apache Shiro, MyBatis, Beetl, Bootstrap, AdminLTE), online code generation, including modules: Organization, role users, menu and butt...

Results 108 jeesite issues
Sort by recently updated
recently updated
newest added

idea 导入初始化的时候,pom.xml中jdbc.driver报红线,不知道有人遇到过吗?可否解决下,还是我配置的环境有问题,关键是,项目能起来,不影响;

严重: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/jeesite]] at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:154) at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:725) at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:701) at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:714) at org.apache.catalina.startup.HostConfig.deployDescriptor(HostConfig.java:581) at org.apache.catalina.startup.HostConfig$DeployDescriptor.run(HostConfig.java:1683) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) at...

我想添加,obj类型的文件在 文件管理的文件库里,报错''此文件后缀在当前文件夹中不可用."" 我看了下js改动不知道在哪里下手 ![20171229092545](https://user-images.githubusercontent.com/15103507/34427195-78260098-ec7a-11e7-9e38-e5e08344fc1c.png)

1.获取不到Act中的Task,返回null。 2. 获取不到Act中的taskId,taskName,taskDefKey 属性值。 不知是框架问题还是我自己业务流程代码有错?请教!

问题:流程管理页面默认上一页、下一页都可点击。无论实际数据多少,点击后显示为0条数据。没有分页效果。 分析:通过一路辛苦的debug,终于modules/act/service/ActTaskService.java中发现返回的分页对象Page属性为: ![image](https://user-images.githubusercontent.com/25815555/33197735-2e2f9d0a-d122-11e7-94b7-07fab98e9c63.png) 这里可以看到first、last、prev、next等属性都是0,再仔细看一个Page类是通过调用initialize()方法进行初始化参数,然而返回的page对象并没有调用该方法初始化。 解决:修改jeesite框架modules/act/service/ActTaskService.java源码,在 `page.getList().add(new Object[]{processDefinition, deployment});` 这行下面添加 `page.initialize();`进行初始化,BUG得到完美解决。 ` List processDefinitionList = processDefinitionQuery.listPage(page.getFirstResult(), page.getMaxResults()); for (ProcessDefinition processDefinition : processDefinitionList) { String deploymentId = processDefinition.getDeploymentId(); Deployment deployment = repositoryService.createDeploymentQuery().deploymentId(deploymentId).singleResult();...

多台服务器部署无法正常登录,但是单台服务器可以登录成功

假设User类已经继承了DataEntity,如果我还要增加一个Saler来继承User貌似就不能够使用CurdService了?

` ${row.examKind}${exam_kind.label} ` selected="selected" 为什么不起作用?

jeesite-master\src\main\java\com\thinkgem\jeesite\modules解压之后这个路径下没有sys文件夹,不知为何,导入到eclipse中也是没有这个文件夹,但是压缩文件里面是可以看到的,很是奇怪