lance

Results 17 comments of lance

@shuanger051 Quartz只是负责配置调度时间, 你把任务写好,然后配置到Quartz里面, 有Quartz负责到时间执行就好了。

你查看下 有没有配置拦截器之类的 把url进行拦截了 或者页面是404错误之类的 还是什么错误 数据库sql文件要执行下的初始化进去

只要把job交给spring管理就好了 比如job标志位@component

你是启动那个子项目? 你这log是没有错误展示的吧 ,你这个是log打印的debug信息 不影响运行的

@BlankKelly 我刚刚测试了spring-boot-shiro demo,运行在jdk8下 没有发现启动错误, 你检查下你的jdk版本,然后编译下项目 看看是否有错误出现

@Subfire 你先把spring-boot-parent 编译下 然后在编译下你要启动的项目

我是spring-boot用的内置tomcat插件 ` org.springframework.boot spring-boot-starter-tomcat provided org.apache.tomcat.embed tomcat-embed-jasper provided javax.servlet jstl ` [https://github.com/leelance/spring-boot-all/blob/master/spring-boot-parent/pom.xml](url)

嗯每次都要刷的 SiteMesh是基于Servlet的filter的,即过滤流。它是通过截取response,并进行装饰后再交付给客户

@teaey 如果接口在cn.teaey.sprintboot.test.interface包中,调用这个接口类在cn.teaey.sprintboot.service呢? Consumer 如下: ``` package com.lance.bootdemo.biz; import org.springframework.stereotype.Service; import com.alibaba.dubbo.config.annotation.Reference; import com.lance.bootserver.biz.BeeService; import com.lance.bootserver.service.ChatService; @Service public class IndexServiceImpl implements IndexService { @Reference private BeeService beeService; @Reference private ChatService chatService;...

Hi @ericbottard, I tried testing with long types or hexadecimal (0x) values, and found that ANTLR always converts them to int. ANTLR cannot distinguish between int and long. .e.g. ```java...