springboot中使用groovy的示例代碼
Groovy
Groovy是一種基于Java的語(yǔ)法的基于JVM的編程語(yǔ)言。Groovy支持動(dòng)態(tài)輸入,閉包,元編程,運(yùn)算符重載等等語(yǔ)法。除此之外,Groovy還提供了許多類似腳本語(yǔ)言的功能,比如,多行字符串,字符串插值,優(yōu)雅的循環(huán)結(jié)構(gòu)和簡(jiǎn)單的屬性訪問(wèn)。另外,結(jié)尾分號(hào)是可選的。而這些都有足夠的理幫助開發(fā)人員為了提高開發(fā)效率。
換句話說(shuō),Groovy就是一種繼承了動(dòng)態(tài)語(yǔ)言的優(yōu)良特性并運(yùn)行在JVM上的編程語(yǔ)言。由于Groovy的語(yǔ)法非常接近Java,所以Java開發(fā)人員很容易開始使用Groovy。 Spring Boot應(yīng)用中也支持使用Groovy編程語(yǔ)言進(jìn)行開發(fā)。
- ResourceScriptSource:在 resources 下面寫groovy類
- StaticScriptSource:把groovy類代碼放進(jìn)XML里
- DatabaseScriptSource:把groovy類代碼放進(jìn)數(shù)據(jù)庫(kù)中
pom
<!-- groovy --> <dependency> <artifactId>groovy</artifactId> <groupId>org.codehaus.groovy</groupId> <version>2.5.8</version> <scope>compile</scope> </dependency>
ResourceScriptSource
@SpringBootApplication public class DemoApplication { public static void main(String[] args) { ConfigurableApplicationContext run = SpringApplication.run(DemoApplication.class, args); ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("spring-groovy.xml"); GroovyService bean = context.getBean(GroovyService.class); String sayHello = bean.sayHello(); System.out.println(sayHello); } }
public interface GroovyService { String sayHello(); }
spring-groovy.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:lang="http://www.springframework.org/schema/lang" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang.xsd"> <lang:groovy id="helloService"> <lang:inline-script> import com.example.demo.groovy.GroovyService class HelloServiceImpl implements GroovyService { String name; @Override String sayHello() { return "Hello $name. Welcome to static script in Groovy."; } } </lang:inline-script> <lang:property name="name" value="maple"/> </lang:groovy> </beans>
DatabaseScriptSource
方法一:
實(shí)時(shí)讀取DB里的groovy腳本文件
利用GroovyClassLoader去編譯腳本文件
把class對(duì)象注入成Spring bean
反射調(diào)用腳本的方法
CREATE TABLE `groovy_script` ( `id` bigint NOT NULL AUTO_INCREMENT, `script_name` varchar(64) NOT NULL COMMENT 'script name', `script_content` text NOT NULL COMMENT 'script content', `status` varchar(16) NOT NULL DEFAULT 'ENABLE' COMMENT 'ENABLE/DISENABLE', `extend_info` varchar(4096) DEFAULT NULL, `created_time` timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6), `modified_time` timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='groovy script';
INSERT INTO book_shop2.groovy_script (id, script_name, script_content, status, extend_info, created_time, modified_time) VALUES(1, 'groovyService', 'import com.example.demo.groovy.GroovyService class HelloServiceImpl implements GroovyService { @Override String sayHello() { return "sayHello"; } @Override String sayHello(String name) { return "Hello " + name + ". Welcome to static script in Groovy."; } }', 'ENABLE', NULL, '2020-09-26 17:16:36.477818000', '2022-09-04 22:54:51.421959000');
@RestController public class GroovyController { @Autowired GroovyScriptMapper groovyScriptMapper; @GetMapping("/aaaa") private String groovyTest() throws IllegalAccessException, InstantiationException, InvocationTargetException, NoSuchMethodException { GroovyScript groovyScript = this.groovyScriptMapper.getOne(1L); System.out.println(groovyScript.getScriptContent()); Class clazz = new GroovyClassLoader().parseClass(groovyScript.getScriptContent()); Object o = clazz.newInstance(); SpringContextUtils.autowireBean(o); Method method = clazz.getMethod("sayHello", String.class); String aaaaaaa = (String) method.invoke(o, "aaaaaaa"); System.out.println(aaaaaaa); return aaaaaaa; } } /* import com.example.demo.groovy.GroovyService class HelloServiceImpl implements GroovyService { @Override String sayHello() { return "sayHello"; } @Override String sayHello(String name) { return "Hello " + name + ". Welcome to static script in Groovy."; } } Hello aaaaaaa. Welcome to static script in Groovy. */
public interface GroovyScriptMapper extends BaseMapper<GroovyScript> { @Select({"select script_content from groovy_script where id = #{id}"}) @Result(column = "script_content", property = "scriptContent") GroovyScript getOne(Long id); }
@Component public class SpringContextUtils implements ApplicationContextAware { static ApplicationContext context; @Override public void setApplicationContext(ApplicationContext applicationContext) throws BeansException { SpringContextUtils.context = applicationContext; } public static void autowireBean(Object bean) { context.getAutowireCapableBeanFactory().autowireBean(bean); } public static ApplicationContext getContext() { return context; } public static <T> T getBean(Class<T> clazz) { return context.getBean(clazz); } public static <T> T getBean(String name) { return (T) context.getBean(name); } }
到此這篇關(guān)于springboot中使用groovy的文章就介紹到這了,更多相關(guān)springboot 使用groovy內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
SpringCloud Bus如何實(shí)現(xiàn)配置刷新
這篇文章主要介紹了SpringCloud Bus如何實(shí)現(xiàn)配置刷新,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2020-09-09Java使用觀察者模式實(shí)現(xiàn)氣象局高溫預(yù)警功能示例
這篇文章主要介紹了Java使用觀察者模式實(shí)現(xiàn)氣象局高溫預(yù)警功能,結(jié)合完整實(shí)例形式分析了java觀察者模式實(shí)現(xiàn)氣象局高溫預(yù)警的相關(guān)接口定義、使用、功能操作技巧,并總結(jié)了其設(shè)計(jì)原則與適用場(chǎng)合,具有一定參考借鑒價(jià)值,需要的朋友可以參考下2018-04-04Java中使用RediSearch實(shí)現(xiàn)高效的數(shù)據(jù)檢索功能
RediSearch是一款構(gòu)建在Redis上的搜索引擎,它為Redis數(shù)據(jù)庫(kù)提供了全文搜索、排序、過(guò)濾和聚合等高級(jí)查詢功能,本文將介紹如何在Java應(yīng)用中集成并使用RediSearch,以實(shí)現(xiàn)高效的數(shù)據(jù)檢索功能,感興趣的朋友跟著小編一起來(lái)看看吧2024-05-05線程池滿Thread?pool?exhausted排查和解決方案
這篇文章主要介紹了線程池滿Thread?pool?exhausted排查和解決方案,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2022-11-11MAC上IntelliJ IDEA的svn無(wú)法保存密碼解決方案
今天小編就為大家分享一篇關(guān)于MAC上IntelliJ IDEA的svn無(wú)法保存密碼解決方案,小編覺(jué)得內(nèi)容挺不錯(cuò)的,現(xiàn)在分享給大家,具有很好的參考價(jià)值,需要的朋友一起跟隨小編來(lái)看看吧2018-10-10