Skip to content

Commit

Permalink
修改注释
Browse files Browse the repository at this point in the history
  • Loading branch information
fartherp committed Jul 12, 2019
1 parent d89471c commit b46f1b4
Show file tree
Hide file tree
Showing 21 changed files with 55 additions and 49 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
/**
* Created by IntelliJ IDEA.
*
* @author: CK
* @date: 2018/12/13
* @author CK
* @date 2018/12/13
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
/**
* Created by IntelliJ IDEA.
*
* @author: CK
* @date: 2018/12/13
* @author CK
* @date 2018/12/13
*/
@Configuration
@ConditionalOnClass({MockInterceptor.class, PackageNameAutoProxyCreator.class})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
/**
* Created by IntelliJ IDEA.
*
* @author: CK
* @date: 2018/12/14
* @author CK
* @date 2018/12/14
*/
@ConfigurationProperties(prefix = MockProperties.FARTHERP_MOCK_PREFIX)
public class MockProperties {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
/**
* Created by IntelliJ IDEA.
*
* @author: CK
* @date: 2018/12/13
* @author CK
* @date 2018/12/13
*/
@Configuration
public class MockServiceMarkerConfiguration {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
* T t = ServiceLocator.getBean("beanName");
* </pre>
*
* @author: CK
* @date: 2018/5/22
* @author CK
* @date 2018/5/22
*/
public class ServiceLocatorInitializer implements ApplicationContextInitializer<ConfigurableApplicationContext> {
private final static Logger logger = LoggerFactory.getLogger(ServiceLocatorInitializer.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/**
* Created by IntelliJ IDEA.
*
* @author: CK
* @date: 2018/5/22
* @author CK
* @date 2018/5/22
*/
package com.github.fartherp.framework.spring.boot.autoconfigure;
package com.github.fartherp.framework.spring.boot.autoconfigure;
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@

/**
* Created by IntelliJ IDEA.
* Author: CK
* Date: 2019/1/15
*
* @author CK
* @date 2019/1/15
*/
public class MockAutoConfigurationTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
/**
* Created by IntelliJ IDEA.
*
* @author: CK
* @date: 2018/5/22
* @author CK
* @date 2018/5/22
*/
public class ServiceLocatorInitializerTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
/**
* Created by IntelliJ IDEA.
*
* @author: CK
* @date: 2018/5/22
* @author CK
* @date 2018/5/22
*/
public interface UserService {
String getName();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
/**
* Created by IntelliJ IDEA.
*
* @author: CK
* @date: 2018/5/22
* @author CK
* @date 2018/5/22
*/
@Service("userService")
public class UserServiceImpl implements UserService {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
/**
* Created by IntelliJ IDEA.
*
* @author: CK
* @date: 2018/5/22
* @author CK
* @date 2018/5/22
*/
public interface UserService {
String getName();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@

/**
* Created by IntelliJ IDEA.
* Author: CK
* Date: 2019/1/15
*
* @author CK
* @date 2019/1/15
*/
@Service("mockUserManager")
public class MockUserServiceImpl implements UserService {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
/**
* Created by IntelliJ IDEA.
*
* @author: CK
* @date: 2018/5/22
* @author CK
* @date 2018/5/22
*/
@Service("userService")
public class UserServiceImpl implements UserService {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@

/**
* Created by IntelliJ IDEA.
* Author: CK
* Date: 2019/1/15
* @author CK
* @date 2019/1/15
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@

/**
* Created by IntelliJ IDEA.
* Author: CK
* Date: 2019/1/15
*
* @author CK
* @date 2019/1/15
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

/**
* Created by IntelliJ IDEA.
* Author: CK
* Date: 2019/1/15
*
* @author CK
* @date 2019/1/15
*/
package com.github.fartherp.framework.spring.boot.test.autoconfigure;
package com.github.fartherp.framework.spring.boot.test.autoconfigure;
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019. juzhen.io. All rights reserved.
* Copyright (c) 2019. CK. All rights reserved.
*/

package com.github.fartherp.framework.spring.boot.test.autoconfigure;
Expand All @@ -9,8 +9,8 @@

/**
* Created by IntelliJ IDEA.
* Author: CK
* Date: 2019/1/15
* @author CK
* @date 2019/1/15
*/
@SpringBootApplication
@EnableMock
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019. juzhen.io. All rights reserved.
* Copyright (c) 2019. CK. All rights reserved.
*/

package com.github.fartherp.framework.spring.boot.test.autoconfigure;
Expand All @@ -16,8 +16,9 @@

/**
* Created by IntelliJ IDEA.
* Author: CK
* Date: 2019/1/15
*
* @author CK
* @date 2019/1/15
*/
@RunWith(SpringRunner.class)
@FrameworkMockTest
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
/*
* Copyright (c) 2019. juzhen.io. All rights reserved.
* Copyright (c) 2019. CK. All rights reserved.
*/

package com.github.fartherp.framework.spring.boot.test.autoconfigure.service;

/**
* Created by IntelliJ IDEA.
*
* @author: CK
* @date: 2018/5/22
* @author CK
* @date 2018/5/22
*/
public interface UserService {
String getName();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019. juzhen.io. All rights reserved.
* Copyright (c) 2019. CK. All rights reserved.
*/

package com.github.fartherp.framework.spring.boot.test.autoconfigure.service.impl;
Expand All @@ -9,8 +9,9 @@

/**
* Created by IntelliJ IDEA.
* Author: CK
* Date: 2019/1/15
*
* @author CK
* @date 2019/1/15
*/
@Service("mockUserManager")
public class MockUserServiceImpl implements UserService {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019. juzhen.io. All rights reserved.
* Copyright (c) 2019. CK. All rights reserved.
*/

package com.github.fartherp.framework.spring.boot.test.autoconfigure.service.impl;
Expand All @@ -10,8 +10,8 @@
/**
* Created by IntelliJ IDEA.
*
* @author: CK
* @date: 2018/5/22
* @author CK
* @date 2018/5/22
*/
@Service("userService")
public class UserServiceImpl implements UserService {
Expand Down

0 comments on commit b46f1b4

Please sign in to comment.