JSFiddle - React, Tailwind, and code Playground

by kim hyungjin

HTML

// 컨테이너
<beans> 
    <bean id="bar" class="kr.co.nextree.SubBar">
    <bean id="foo" class="kr.co.nextree.Foo">
        <property name="bar" ref="bar"/>
    </bean>
</beans>

package kr.co.nextree;
public class Foo {
    private Bar bar;
    public void setBar(Bar bar) {
        this.bar = bar;
    }
}