提交 bb8b55cf 编写于 作者: MaxKey单点登录官方's avatar MaxKey单点登录官方

jars fine

jars fine
上级 ba66c919
......@@ -18,3 +18,4 @@ jdk/*
*/org/apache/mybatis/jpa/*
org/apache/mybatis/jpa/*
/.gradle/
/build/
......@@ -123,12 +123,16 @@ subprojects {
mavenLocal()
mavenCentral()
jcenter()
maven { url "https://maven.eveoh.nl/content/repositories/releases" }
maven { url "http://mvn.gt.igexin.com/nexus/content/repositories/releases"}
maven { url "https://plugins.gradle.org/m2/" }
maven { url "https://plugins.gradle.org/m2/" }
maven { url "http://repo.spring.io/plugins-release" }
maven { url "https://repo.spring.io/milestone" }
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo1.maven.org/maven2/" }
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
maven { url "https://maven.repository.redhat.com/ga/" }
}
dependencies {
......@@ -257,7 +261,7 @@ subprojects {
compile group: 'org.mybatis', name: 'mybatis-spring', version: '2.0.1'
compile group: 'mysql', name: 'mysql-connector-java', version: '5.1.47'
compile group: 'com.mchange', name: 'c3p0', version: '0.9.5.4'
//compile group: 'com.mchange', name: 'mchange-commons-java', version: '0.2.15'
compile group: 'com.mchange', name: 'mchange-commons-java', version: '0.2.16'
compile group: 'org.hibernate.validator', name: 'hibernate-validator', version: '6.0.17.Final'
compile group: 'org.hibernate', name: 'hibernate-validator-cdi', version: '6.0.17.Final'
compile group: 'org.hibernate.validator', name: 'hibernate-validator-annotation-processor', version: '6.0.17.Final'
......@@ -296,7 +300,6 @@ subprojects {
compile fileTree(dir: "${rootDir}/maxkey-lib/", include: '*/*.jar')
compile group: 'org.apache.tomcat.embed', name: 'tomcat-embed-core', version: '8.5.47'
compile group: 'org.apache.tomcat.embed', name: 'tomcat-embed-jasper', version: '8.5.47'
compile group: 'org.apache.tomcat.embed', name: 'tomcat-embed-logging-juli', version: '8.5.2'
//compile group: 'org.eclipse.jdt.core.compiler', name: 'ecj', version: '4.6.1'
......
......@@ -6,7 +6,7 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class PathUtils {
private final Logger _logger = LoggerFactory.getLogger(getClass());
private final Logger _logger = LoggerFactory.getLogger(PathUtils.class);
private static PathUtils instance = null;
private String classPath;
private String appPath;
......@@ -23,6 +23,7 @@ public class PathUtils {
public PathUtils() {
try {
classPath = java.net.URLDecoder.decode(PathUtils.class.getResource("PathUtils.properties").getFile(),"UTF-8");
_logger.debug("PathUtils() PathUtils " +classPath);
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
......
Manifest-Version: 1.0
Implementation-Title: maxkey-protocol-cas
Implementation-Version: 1.0.0.RELEASE
Implementation-Date: 2019-11-10T12:35:40.160+08:00[Asia/Shanghai]
Implementation-Date: 2019-11-12T23:06:23.516+08:00[Asia/Shanghai]
Created-By: org.maxkey
Implementation-Vendor: https://github.com/shimingxy/MaxKey
Manifest-Version: 1.0
Implementation-Title: maxkey-protocol-desktop
Implementation-Version: 1.0.0.RELEASE
Implementation-Date: 2019-11-10T12:35:40.172+08:00[Asia/Shanghai]
Implementation-Date: 2019-11-12T23:06:23.610+08:00[Asia/Shanghai]
Created-By: org.maxkey
Implementation-Vendor: https://github.com/shimingxy/MaxKey
Manifest-Version: 1.0
Implementation-Title: maxkey-protocol-extendapi
Implementation-Version: 1.0.0.RELEASE
Implementation-Date: 2019-11-10T12:35:40.185+08:00[Asia/Shanghai]
Implementation-Date: 2019-11-12T23:06:23.620+08:00[Asia/Shanghai]
Created-By: org.maxkey
Implementation-Vendor: https://github.com/shimingxy/MaxKey
Manifest-Version: 1.0
Implementation-Title: maxkey-protocol-formbased
Implementation-Version: 1.0.0.RELEASE
Implementation-Date: 2019-11-10T12:35:40.194+08:00[Asia/Shanghai]
Implementation-Date: 2019-11-12T23:06:23.630+08:00[Asia/Shanghai]
Created-By: org.maxkey
Implementation-Vendor: https://github.com/shimingxy/MaxKey
Manifest-Version: 1.0
Implementation-Title: maxkey-protocol-oauth-2.0
Implementation-Version: 1.0.0.RELEASE
Implementation-Date: 2019-11-10T12:35:40.204+08:00[Asia/Shanghai]
Implementation-Date: 2019-11-12T23:06:23.644+08:00[Asia/Shanghai]
Created-By: org.maxkey
Implementation-Vendor: https://github.com/shimingxy/MaxKey
Manifest-Version: 1.0
Implementation-Title: maxkey-protocol-saml-2.0
Implementation-Version: 1.0.0.RELEASE
Implementation-Date: 2019-11-10T12:35:40.214+08:00[Asia/Shanghai]
Implementation-Date: 2019-11-12T23:06:23.653+08:00[Asia/Shanghai]
Created-By: org.maxkey
Implementation-Vendor: https://github.com/shimingxy/MaxKey
Manifest-Version: 1.0
Implementation-Title: maxkey-protocol-tokenbased
Implementation-Version: 1.0.0.RELEASE
Implementation-Date: 2019-11-10T12:35:40.220+08:00[Asia/Shanghai]
Implementation-Date: 2019-11-12T23:06:23.669+08:00[Asia/Shanghai]
Created-By: org.maxkey
Implementation-Vendor: https://github.com/shimingxy/MaxKey
......@@ -4,6 +4,8 @@ import java.util.Date;
import javax.servlet.ServletException;
import org.apache.ibatis.io.VFS;
import org.apache.mybatis.jpa.SpringBootVFS;
import org.maxkey.web.InitApplicationContext;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
......@@ -12,18 +14,13 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.annotation.Bean;
@SpringBootApplication
public class MaxKeyApplication extends SpringBootServletInitializer {
private static final Logger _logger = LoggerFactory.getLogger(MaxKeyApplication.class);
@Bean
MaxKeyConfig MaxKeyConfig() {
return new MaxKeyConfig();
}
public static void main(String[] args) {
VFS.addImplClass(SpringBootVFS.class);
ConfigurableApplicationContext applicationContext =SpringApplication.run(MaxKeyApplication.class, args);
InitApplicationContext initWebContext=new InitApplicationContext(applicationContext);
try {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册