TarsJava icon indicating copy to clipboard operation
TarsJava copied to clipboard

Java language framework rpc source code implementation

Results 44 TarsJava issues
Sort by recently updated
recently updated
newest added

1. 是否需要配套的工具或者指引方法,比如文件:https://github.com/TarsCloud/TarsJava/blob/v1.7.x/core/src/main/resources/AdminF.tars 2. 部分协议文件缺失,比如:ServerFPrx

参考之前springboot的项目用法:https://github.com/spring-projects/spring-boot/blob/2.1.x/pom.xml

``` ClientVersion中的version能否从maven的版本中获取 防止版本忘记修改的问题. ```

https://github.com/TarsCloud/TarsJava/blob/6be20ca7f7e486ac15c56f22dedda510d1a5380a/tars-common-api/src/main/java/com/qq/tars/protocol/tars/TarsInputStream.java#L560

在Controller中通过@TarsClient注入其他服务的代理对象: ``` @TarsClient(name = "xx.XxServer.XxObj", asyncTimeout = 10*1000) private UserPrx userPrx; ``` Controller在启动初始化时报错: ``` [TARS] start application fail Error creating bean with name 'xxController': Unsatisfied dependency expressed through field ;...

使用 web 控制台管理日志等级时报错没有发现 logback.xml 配置文件不存在 在源码中发现是通过 `new File("logback.xml")` 获取路径为 `file:/data/tars/app_log/logback.xml`的 logback 配置文件,但是实际配置文件在 `classpath:logback.xml` 中

bug

2.0版本里,不能通过com.qq.tars.server.startup.Main启动了。 这种方式是去掉了吗? 1.4版本里,还有这些文件:

个人感觉Java项目没有其他语言投入多,感谢支持。

enhancement
good first issue
question

Hi, I am a new bee in Tars, I have two issues while trying out examples tars-spring-boot-http-server and tars-spring-boot-server on Tarsweb. **ISSUE1**: While converting tars-springboot-server into jar file using "mvn...