Browse Source

jfinal 4.8 release ^_^

James 6 years ago
parent
commit
ebac0fcc86

+ 1 - 1
src/main/java/com/jfinal/core/paragetter/ParaProcessorBuilder.java

@@ -94,7 +94,7 @@ public class ParaProcessorBuilder {
 		if(!p.isNamePresent()) {
 			log.warn("You should config compiler argument \"-parameters\" for parameter injection of action : " +
 					controllerClass.getName() + "." + method.getName() + "(...) \n" +
-					"Visit https://www.jfinal.com/doc/3-3 for details \n");
+					"Visit https://jfinal.com/doc/3-3 for details \n");
 		}
 		String parameterName = p.getName();
 		String defaultValue = null;

+ 1 - 1
src/main/java/com/jfinal/proxy/ProxyCompiler.java

@@ -129,7 +129,7 @@ public class ProxyCompiler {
 		JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
 		if (compiler == null) {
 			throw new RuntimeException("Can not get javax.tools.JavaCompiler, check whether \"tools.jar\" is in the environment variable CLASSPATH \n" +
-										"Visit https://www.jfinal.com/doc/4-8 for details \n");
+										"Visit https://jfinal.com/doc/4-8 for details \n");
 		}
 		
 		DiagnosticCollector<JavaFileObject> collector = new DiagnosticCollector<>();